diff options
author | David Zeuthen <davidz@redhat.com> | 2007-08-09 12:37:55 -0400 |
---|---|---|
committer | David Zeuthen <davidz@redhat.com> | 2007-08-09 12:37:55 -0400 |
commit | 1e9a533c9c44e8c421bc9f48017258aab21adde5 (patch) | |
tree | 978730878894a978d10b31328eb4ffdbf9904fd2 | |
parent | 2e3b7bd46951ea51804f1b3848d2f9034176b152 (diff) |
use correct type for conversation_done() function
fix proposed by Danny Kukawka <danny.kukawka@web.de>
-rw-r--r-- | tools/polkit-grant.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/polkit-grant.c b/tools/polkit-grant.c index b83c7d3..24a2ca7 100644 --- a/tools/polkit-grant.c +++ b/tools/polkit-grant.c @@ -219,7 +219,7 @@ conversation_override_grant_type (PolKitGrant *polkit_grant, PolKitResult auth_t } static void -conversation_done (PolKitGrant *polkit_grant, polkit_bool_t gained_privilege, void *user_data) +conversation_done (PolKitGrant *polkit_grant, polkit_bool_t gained_privilege, polkit_bool_t invalid_data, void *user_data) { UserData *ud = user_data; ud->gained_privilege = gained_privilege; |