From: Philip Withnall Date: Fri, 26 Jun 2026 11:07:15 +0000 (+0100) Subject: sysupdate: Fix some clang-tidy lint warnings for argument names X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F42422%2Fhead;p=thirdparty%2Fsystemd.git sysupdate: Fix some clang-tidy lint warnings for argument names Signed-off-by: Philip Withnall --- 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;