From 2bdb99e3578fa8ff606632d9e7242bc753737752 Mon Sep 17 00:00:00 2001 From: Jakub Hrozek Date: Tue, 10 Jul 2012 15:16:16 +0200 Subject: Cast uid_t to unsigned long long in DEBUG messages --- src/db/sysdb_ops.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/db') diff --git a/src/db/sysdb_ops.c b/src/db/sysdb_ops.c index 528b84f1a..6c1fc49b4 100644 --- a/src/db/sysdb_ops.c +++ b/src/db/sysdb_ops.c @@ -1559,7 +1559,7 @@ int sysdb_store_user(struct sysdb_ctx *sysdb, } DEBUG(SSSDBG_MINOR_FAILURE, ("A user with the same UID [%llu] was removed from the " - "cache\n", uid)); + "cache\n", (unsigned long long) uid)); ret = sysdb_add_user(sysdb, name, uid, gid, gecos, homedir, shell, attrs, cache_timeout, now); } @@ -1706,7 +1706,7 @@ int sysdb_store_group(struct sysdb_ctx *sysdb, } DEBUG(SSSDBG_MINOR_FAILURE, ("A group with the same GID [%llu] was removed from the " - "cache\n", gid)); + "cache\n", (unsigned long long) gid)); ret = sysdb_add_group(sysdb, name, gid, attrs, cache_timeout, now); } goto done; -- cgit