From e261b552c850221dd3fd510b8c32d2adf4e0044a Mon Sep 17 00:00:00 2001 From: Philip Withnall Date: Fri, 26 Jun 2026 12:07:15 +0100 Subject: [PATCH] sysupdate: Fix some clang-tidy lint warnings for argument names Signed-off-by: Philip Withnall --- src/sysupdate/sysupdate-feature.c | 4 ++-- src/sysupdate/sysupdate-transfer.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/sysupdate/sysupdate-feature.c b/src/sysupdate/sysupdate-feature.c index d67b61859cf..0c9bb112fe9 100644 --- a/src/sysupdate/sysupdate-feature.c +++ b/src/sysupdate/sysupdate-feature.c @@ -112,8 +112,8 @@ int feature_read_definition(Feature *f, const char *root, const char *path, cons config_item_table_lookup, table, CONFIG_PARSE_WARN, (void *) root, - /* stats_by_path= */ NULL, - /* drop_in_files= */ NULL); + /* ret_stats_by_path= */ NULL, + /* ret_drop_in_files= */ NULL); if (r < 0) return r; diff --git a/src/sysupdate/sysupdate-transfer.c b/src/sysupdate/sysupdate-transfer.c index f2a4377e1e9..c79743cad69 100644 --- a/src/sysupdate/sysupdate-transfer.c +++ b/src/sysupdate/sysupdate-transfer.c @@ -563,8 +563,8 @@ int transfer_read_definition(Transfer *t, const char *path, const char **dirs, H config_item_table_lookup, table, CONFIG_PARSE_WARN, t, - /* stats_by_path= */ NULL, - /* drop_in_files= */ NULL); + /* ret_stats_by_path= */ NULL, + /* ret_drop_in_files= */ NULL); if (r < 0) return r; -- 2.47.3