repo: ngircd action: commit revision: path_from: revision_from: 14afdaee087dd1243800dd0697785c47ccbf931e: path_to: revision_to:
commit 14afdaee087dd1243800dd0697785c47ccbf931e Author: Alexander BartonDate: Mon Jun 27 10:27:07 2011 +0200 hash: Use UINT32 instead of uint32_t diff --git a/src/ngircd/hash.c b/src/ngircd/hash.c
--- 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))))
-----END OF PAGE-----