mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-01-31 03:50:36 +00:00
Small typo fix to make it compile on x86
This commit is contained in:
parent
acf4da9385
commit
5fc1cc2414
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