dovecot-2.0: Compiler warning fix.

dovecot at dovecot.org dovecot at dovecot.org
Mon May 4 04:35:36 EEST 2009


details:   http://hg.dovecot.org/dovecot-2.0/rev/a035febf39d4
changeset: 9203:a035febf39d4
user:      Timo Sirainen <tss at iki.fi>
date:      Sun May 03 21:35:28 2009 -0400
description:
Compiler warning fix.

diffstat:

1 file changed, 2 insertions(+), 2 deletions(-)
src/lib/primes.c |    4 ++--

diffs (14 lines):

diff -r 4067b6e7f515 -r a035febf39d4 src/lib/primes.c
--- a/src/lib/primes.c	Sat May 02 18:31:51 2009 -0400
+++ b/src/lib/primes.c	Sun May 03 21:35:28 2009 -0400
@@ -30,8 +30,8 @@ static const unsigned int primes[] = {
 	268435459,
 	536870923,
 	1073741827,
-	2147483659,
-	4294967291 /* previous from 2^32 */
+	2147483659U,
+	4294967291U /* previous from 2^32 */
 };
 
 static const unsigned int primes_count = N_ELEMENTS(primes);


More information about the dovecot-cvs mailing list