From: Alexander Barton Date: Mon, 27 Jun 2011 08:27:07 +0000 (+0200) Subject: hash: Use UINT32 instead of uint32_t X-Git-Tag: rel-18-rc1~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=14afdaee087dd1243800dd0697785c47ccbf931e;p=ngircd hash: Use UINT32 instead of uint32_t --- diff --git a/src/ngircd/hash.c b/src/ngircd/hash.c index 7b7976c9..c75b57d5 100644 --- a/src/ngircd/hash.c +++ b/src/ngircd/hash.c @@ -58,7 +58,7 @@ Hash( const char *String ) * Not all of his functions are used here. */ -#define hashsize(n) ((uint32_t)1<<(n)) +#define hashsize(n) ((UINT32)1<<(n)) #define hashmask(n) (hashsize(n)-1) #define rot(x,k) (((x)<<(k)) | ((x)>>(32-(k))))