changeset 12329:f38e4e1465c8

Compiler warning fix.
author Timo Sirainen <tss@iki.fi>
date Thu, 21 Oct 2010 17:12:19 +0100
parents 745ef289b0ea
children 3959ddbc633c
files src/lib-master/master-login-auth.c
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/lib-master/master-login-auth.c	Thu Oct 21 17:11:02 2010 +0100
+++ b/src/lib-master/master-login-auth.c	Thu Oct 21 17:12:19 2010 +0100
@@ -374,7 +374,8 @@
 	if (auth->auth_server_pid != req->auth_pid) {
 		/* auth server was restarted. don't even attempt a login. */
 		i_warning("Auth server restarted (pid %u -> %u), aborting auth",
-			  req->auth_pid, auth->auth_server_pid);
+			  (unsigned int)req->auth_pid,
+			  (unsigned int)auth->auth_server_pid);
 		master_login_auth_request_remove(auth, req);
 		req->callback(NULL, MASTER_AUTH_ERRMSG_INTERNAL_FAILURE,
 			      req->context);