]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
Compiler warning fix.
authorTimo Sirainen <tss@iki.fi>
Mon, 4 May 2009 01:35:28 +0000 (21:35 -0400)
committerTimo Sirainen <tss@iki.fi>
Mon, 4 May 2009 01:35:28 +0000 (21:35 -0400)
--HG--
branch : HEAD

src/lib/primes.c

index 5636639c14203205bf4908e485537f629d3d9853..1b029b67894ef73f6594df817a8ab312e18a2dfe 100644 (file)
@@ -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);