From 8f7195ef3c1caebf4d55d9436b32ff81cb928b6c Mon Sep 17 00:00:00 2001 From: David Tardon Date: Tue, 27 Jun 2023 14:39:33 +0200 Subject: [PATCH] bus-polkit: drop unused argument --- src/shared/bus-polkit.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/shared/bus-polkit.c b/src/shared/bus-polkit.c index 879d3c28908..904d775c178 100644 --- a/src/shared/bus-polkit.c +++ b/src/shared/bus-polkit.c @@ -266,7 +266,6 @@ static int process_polkit_response( sd_bus_message *call, const char *action, const char **details, - Hashmap **registry, sd_bus_error *ret_error) { int authorized, challenge, r; @@ -274,7 +273,6 @@ static int process_polkit_response( assert(q); assert(call); assert(action); - assert(registry); assert(ret_error); assert(q->action); @@ -342,7 +340,7 @@ int bus_verify_polkit_async( /* This is the second invocation of this function, and there's already a response from * polkit, let's process it */ if (q) - return process_polkit_response(q, call, action, details, registry, ret_error); + return process_polkit_response(q, call, action, details, ret_error); #endif r = sd_bus_query_sender_privilege(call, capability); -- 2.47.3