From 02902965822816ec6fcc8a07d008802f17ca1e34 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Wed, 14 Nov 2012 22:14:53 +0100 Subject: [PATCH] polkit: fix type on comparison --- src/shared/polkit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/polkit.c b/src/shared/polkit.c index 9ed6ff271..126096e64 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 */ -- 2.30.2