summaryrefslogtreecommitdiff
path: root/src/shared/polkit.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2012-11-14 22:14:53 +0100
committerLennart Poettering <lennart@poettering.net>2012-11-14 22:21:16 +0100
commit02902965822816ec6fcc8a07d008802f17ca1e34 (patch)
tree6e78016d360a9f29dd8a2275b5f3f90978351144 /src/shared/polkit.c
parent7361c3b4e1e28a7eb4354a3da354b22e79782141 (diff)
polkit: fix type on comparison
Diffstat (limited to 'src/shared/polkit.c')
-rw-r--r--src/shared/polkit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/polkit.c b/src/shared/polkit.c
index 9ed6ff2717..126096e64f 100644
--- a/src/shared/polkit.c
+++ b/src/shared/polkit.c
@@ -56,7 +56,7 @@ int verify_polkit(
return -EINVAL;
ul = dbus_bus_get_unix_user(c, sender, error);
- if (ul == (unsigned) -1)
+ if (ul == (unsigned long) -1)
return -EINVAL;
/* Shortcut things for root, to avoid the PK roundtrip and dependency */