repo: ngircd
action: commit
revision: 
path_from: 
revision_from: 14afdaee087dd1243800dd0697785c47ccbf931e:
path_to: 
revision_to: 
git.thebackupbox.net
ngircd
git clone git://git.thebackupbox.net/ngircd
commit 14afdaee087dd1243800dd0697785c47ccbf931e
Author: Alexander Barton 
Date:   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
index 7b7976c9a330ac29e63135215ba96429e4f02505..
index ..c75b57d596a4d9a4095a89f85153fdaeabb84749 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))))

-----END OF PAGE-----