summaryrefslogtreecommitdiffstats
path: root/freebsd/sys/sys/fnv_hash.h
diff options
context:
space:
mode:
Diffstat (limited to 'freebsd/sys/sys/fnv_hash.h')
-rw-r--r--freebsd/sys/sys/fnv_hash.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/freebsd/sys/sys/fnv_hash.h b/freebsd/sys/sys/fnv_hash.h
index 1b9fa9f5..e574e0e0 100644
--- a/freebsd/sys/sys/fnv_hash.h
+++ b/freebsd/sys/sys/fnv_hash.h
@@ -61,7 +61,7 @@ static __inline Fnv64_t
fnv_64_str(const char *str, Fnv64_t hval)
{
const u_int8_t *s = (const u_int8_t *)str;
- u_register_t c; /* 32 bit on i386, 64 bit on alpha,ia64 */
+ u_register_t c; /* 32 bit on i386, 64 bit on alpha */
while ((c = *s++) != 0) {
hval *= FNV_64_PRIME;