From: Christophe CURIS <[email protected]>
Signed-off-by: Christophe CURIS <[email protected]>
---
WINGs/hashtable.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/WINGs/hashtable.c b/WINGs/hashtable.c
index bf4ea7b..d8e53a2 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 *);
}
--
1.8.4.rc3
--
To unsubscribe, send mail to [email protected].