From: David Tardon Date: Mon, 19 Jun 2023 10:34:27 +0000 (+0200) Subject: bus-polkit: merge variable declarations X-Git-Tag: v254-rc1~173^2~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4d12d3976c7e471f37cbdd4e8900b577f76e4cc7;p=thirdparty%2Fsystemd.git bus-polkit: merge variable declarations --- diff --git a/src/shared/bus-polkit.c b/src/shared/bus-polkit.c index 03abe6e2678..7fee10f24f0 100644 --- a/src/shared/bus-polkit.c +++ b/src/shared/bus-polkit.c @@ -130,8 +130,7 @@ int bus_test_polkit( return 1; #if ENABLE_POLKIT - _cleanup_(sd_bus_message_unrefp) sd_bus_message *request = NULL; - _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL; + _cleanup_(sd_bus_message_unrefp) sd_bus_message *request = NULL, *reply = NULL; int authorized = false, challenge = false; r = bus_message_new_polkit_auth_call(call, action, details, /* interactive = */ false, &request);