summaryrefslogtreecommitdiff
path: root/scheduler/auth.c
diff options
context:
space:
mode:
authorMichael R Sweet <michaelrsweet@gmail.com>2016-10-20 16:35:52 -0400
committerMichael R Sweet <michaelrsweet@gmail.com>2016-10-20 16:35:52 -0400
commitc6a9dc36b7e2c3f9afe3680a301fcc86d3d40f75 (patch)
tree785581665bb841f1721f3bd97f9eecd736335672 /scheduler/auth.c
parentb0a1368dc23f1ab224c7a5c645d4d4aadf1514c6 (diff)
downloadcups-c6a9dc36b7e2c3f9afe3680a301fcc86d3d40f75.tar.gz
Remove unnecessary logging.
Fix compiler warning for group ID comparisons.
Diffstat (limited to 'scheduler/auth.c')
-rw-r--r--scheduler/auth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/scheduler/auth.c b/scheduler/auth.c
index a73a1e09d..6d573cc81 100644
--- a/scheduler/auth.c
+++ b/scheduler/auth.c
@@ -1194,7 +1194,7 @@ cupsdCheckGroup(
#endif /* __APPLE__ */
for (i = 0; i < ngroups; i ++)
- if (group->gr_gid == groups[i])
+ if ((int)group->gr_gid == (int)groups[i])
return (1);
}
#endif /* HAVE_GETGROUPLIST */