dovecot-1.2: Compiler warning fix.
dovecot at dovecot.org
dovecot at dovecot.org
Mon May 4 04:35:52 EEST 2009
details: http://hg.dovecot.org/dovecot-1.2/rev/e9e8446ae0ec
changeset: 9013:e9e8446ae0ec
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 3a4bed08b59d -r e9e8446ae0ec 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