]> arthur.barton.de Git - ngircd-alex.git/commitdiff
- reverted last patch: now compatible with -Wtraditional of GCC 3.
authorAlexander Barton <alex@barton.de>
Thu, 26 Dec 2002 13:16:54 +0000 (13:16 +0000)
committerAlexander Barton <alex@barton.de>
Thu, 26 Dec 2002 13:16:54 +0000 (13:16 +0000)
src/ngircd/hash.c

index 79ad2b215b66eadc61e2919bc7c94702eb143c1c..59cba404ab5edbebb23bee3b8f7826c96f83251f 100644 (file)
@@ -14,7 +14,7 @@
 
 #include "portab.h"
 
 
 #include "portab.h"
 
-static char UNUSED id[] = "$Id: hash.c,v 1.7 2002/12/25 13:22:43 alex Exp $";
+static char UNUSED id[] = "$Id: hash.c,v 1.8 2002/12/26 13:16:54 alex Exp $";
 
 #include "imp.h"
 #include <assert.h>
 
 #include "imp.h"
 #include <assert.h>
@@ -87,7 +87,7 @@ jenkins_hash( register UINT8 *k, register UINT32 length, register UINT32 initval
 
        /* Set up the internal state */
        len = length;
 
        /* Set up the internal state */
        len = length;
-       a = b = 0x9e3779b9u;    /* the golden ratio; an arbitrary value */
+       a = b = 0x9e3779b9    /* the golden ratio; an arbitrary value */
        c = initval;            /* the previous hash value */
 
        /* handle most of the key */
        c = initval;            /* the previous hash value */
 
        /* handle most of the key */