dovecot-2.2: director: Compiler warning fix

dovecot at dovecot.org dovecot at dovecot.org
Sun May 20 03:26:27 EEST 2012


details:   http://hg.dovecot.org/dovecot-2.2/rev/b1c21492f8c9
changeset: 14330:b1c21492f8c9
user:      Timo Sirainen <tss at iki.fi>
date:      Tue Mar 13 15:11:13 2012 +0200
description:
director: Compiler warning fix

diffstat:

 src/director/director-request.c |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r 74d3f14dec5a -r b1c21492f8c9 src/director/director-request.c
--- a/src/director/director-request.c	Mon Mar 12 17:36:29 2012 +0200
+++ b/src/director/director-request.c	Tue Mar 13 15:11:13 2012 +0200
@@ -48,7 +48,7 @@
 		if (user->weak)
 			str_append(str, ", weak user");
 		str_printfa(str, ", user refreshed %u secs ago",
-			    ioloop_time - user->timestamp);
+			    (unsigned int)(ioloop_time - user->timestamp));
 	}
 	str_append_c(str, ')');
 	return str_c(str);


More information about the dovecot-cvs mailing list