From 3ce45cd3ac2ff4e863e44c2977586d90d007d96a Mon Sep 17 00:00:00 2001 From: Jelle van der Waa Date: Tue, 6 May 2025 09:31:50 +0200 Subject: [PATCH] shared: fix leftover bool value from flags conversion Follow-up for 5c48335ef4cc1c930c86c6e893f3ab3e5472f7f6 --- src/shared/bus-polkit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/bus-polkit.c b/src/shared/bus-polkit.c index 0c61464ef0d..97d81e743c3 100644 --- a/src/shared/bus-polkit.c +++ b/src/shared/bus-polkit.c @@ -128,7 +128,7 @@ int bus_test_polkit( _cleanup_(sd_bus_message_unrefp) sd_bus_message *request = NULL, *reply = NULL; int authorized = false, challenge = false; - r = bus_message_new_polkit_auth_call_for_bus(call, action, details, /* flags = */ false, &request); + r = bus_message_new_polkit_auth_call_for_bus(call, action, details, /* flags = */ 0, &request); if (r < 0) return r; -- 2.47.3