diff options
Diffstat (limited to 'common.h')
| -rw-r--r-- | common.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -54,7 +54,7 @@ hashb(uint h, const void *d, uint n) } static inline uint ptrhash(const void *p) { - return (uint)(size_t)p * 2654435761; + return (uint)(size_t)p * 2654435761u; } static inline uint popcnt(uvlong x) { |