mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-23 20:33:05 +00:00
Merge pull request #48 from mhofstra/patch-1
Small typo fix to make it compile on x86
This commit is contained in:
commit
2a2c208884
1 changed files with 1 additions and 1 deletions
2
util.c
2
util.c
|
@ -581,7 +581,7 @@ GMQCC_INLINE uint32_t util_hthashfunc(hash_table_t *ht, const char *key, registe
|
|||
size_t size = strlen(key);
|
||||
uint32_t hash = seed ^ size;
|
||||
uint32_t alias = 0;
|
||||
const unsigned char *data = (const unsigned char*)ket;
|
||||
const unsigned char *data = (const unsigned char*)key;
|
||||
|
||||
while (size >= 4) {
|
||||
alias = *(uint32_t*)data;
|
||||
|
|
Loading…
Reference in a new issue