diff --git a/WINGs/hashtable.c b/WINGs/hashtable.c index bf4ea7b5..d8e53a27 100644 --- a/WINGs/hashtable.c +++ b/WINGs/hashtable.c @@ -42,7 +42,7 @@ static inline unsigned hashString(const void *param) unsigned ctr = 0; while (*key) { - ret ^= *(char *)key++ << ctr; + ret ^= *key++ << ctr; ctr = (ctr + 1) % sizeof(char *); }