hash: Use UINT32 instead of uint32_t

This commit is contained in:
Alexander Barton 2011-06-27 10:27:07 +02:00
parent 949c8ea7c7
commit 14afdaee08
1 changed files with 1 additions and 1 deletions

View 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))))