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_pam.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/winbindd/winbindd_pam.c') diff --git a/source3/winbindd/winbindd_pam.c b/source3/winbindd/winbindd_pam.c index 23de20f0d3..bbf3526fd0 100644 --- a/source3/winbindd/winbindd_pam.c +++ b/source3/winbindd/winbindd_pam.c @@ -544,7 +544,7 @@ static uid_t get_uid_from_state(struct winbindd_cli_state *state) uid = state->request.data.auth.uid; if (uid < 0) { - DEBUG(1,("invalid uid: '%d'\n", uid)); + DEBUG(1,("invalid uid: '%u'\n", (unsigned int)uid)); return -1; } return uid; -- cgit