From b4c9cfb2af8f4dd5e18f032c410694e491f1bd74 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Mon, 11 May 2009 21:56:57 -0700 Subject: Fix a bunch of compiler warnings about wrong format types. Should make Solaris 10 builds look cleaner. Jeremy. --- source3/winbindd/winbindd_cache.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/winbindd/winbindd_cache.c') diff --git a/source3/winbindd/winbindd_cache.c b/source3/winbindd/winbindd_cache.c index 5c1b71897d..e5a72cbfd9 100644 --- a/source3/winbindd/winbindd_cache.c +++ b/source3/winbindd/winbindd_cache.c @@ -4237,7 +4237,7 @@ do_query: DEBUG(10, ("result:\n\thomedir = '%s'\n", *homedir)); DEBUGADD(10, ("\tshell = '%s'\n", *shell)); DEBUGADD(10, ("\tgecos = '%s'\n", *gecos)); - DEBUGADD(10, ("\tgid = '%u'\n", *p_gid)); + DEBUGADD(10, ("\tgid = '%u'\n", (unsigned int)*p_gid)); wcache_save_user_pwinfo( domain, nt_status, user_sid, *homedir, *shell, *gecos, *p_gid ); -- cgit