From 5fc1cc24146b535043ba13618fb2402fe9e6cb20 Mon Sep 17 00:00:00 2001 From: mhofstra Date: Tue, 18 Dec 2012 21:57:16 +0100 Subject: [PATCH] Small typo fix to make it compile on x86 --- util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util.c b/util.c index f213e2f..15db97c 100644 --- a/util.c +++ b/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; -- 2.39.2