From: Daan De Meyer Date: Sun, 2 Jun 2024 20:19:16 +0000 (+0200) Subject: importctl: Fix 0 flags argument in sd_bus_message_append() X-Git-Tag: v256-rc4~41 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=af21385e762aa7faa3bb41451cd66e323c77be6e;p=thirdparty%2Fsystemd.git importctl: Fix 0 flags argument in sd_bus_message_append() --- diff --git a/src/import/importctl.c b/src/import/importctl.c index 15c517c2deb..f939d80815d 100644 --- a/src/import/importctl.c +++ b/src/import/importctl.c @@ -545,7 +545,7 @@ static int export_tar(int argc, char *argv[], void *userdata) { image_class_to_string(arg_image_class), fd >= 0 ? fd : STDOUT_FILENO, arg_format, - /* flags= */ 0); + /* flags= */ UINT64_C(0)); } if (r < 0) return bus_log_create_error(r); @@ -604,7 +604,7 @@ static int export_raw(int argc, char *argv[], void *userdata) { image_class_to_string(arg_image_class), fd >= 0 ? fd : STDOUT_FILENO, arg_format, - /* flags= */ 0); + /* flags= */ UINT64_C(0)); } if (r < 0) return bus_log_create_error(r);