]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
sysupdate: Fix some clang-tidy lint warnings for argument names 42422/head
authorPhilip Withnall <pwithnall@gnome.org>
Fri, 26 Jun 2026 11:07:15 +0000 (12:07 +0100)
committerPhilip Withnall <pwithnall@gnome.org>
Fri, 26 Jun 2026 12:02:02 +0000 (13:02 +0100)
Signed-off-by: Philip Withnall <pwithnall@gnome.org>
src/sysupdate/sysupdate-feature.c
src/sysupdate/sysupdate-transfer.c

index d67b61859cf362243e82943921107092fb393898..0c9bb112fe9b71d402052768dd50b72d713183c2 100644 (file)
@@ -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;
 
index f2a4377e1e9343f77ed54bd9bc548e5b1cbbb638..c79743cad6908f94ca3436451b6f13248b2f295c 100644 (file)
@@ -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;