]> arthur.barton.de Git - ngircd-alex.git/commitdiff
hash: Use UINT32 instead of uint32_t
authorAlexander Barton <alex@barton.de>
Mon, 27 Jun 2011 08:27:07 +0000 (10:27 +0200)
committerAlexander Barton <alex@barton.de>
Mon, 27 Jun 2011 08:27:07 +0000 (10:27 +0200)
src/ngircd/hash.c

index 7b7976c9a330ac29e63135215ba96429e4f02505..c75b57d596a4d9a4095a89f85153fdaeabb84749 100644 (file)
@@ -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))))