From ae419a1012e6b42c8bf6d834a2a3ed4672672699 Mon Sep 17 00:00:00 2001 From: Matt Birkholz Date: Wed, 6 Jun 2018 08:49:35 -0700 Subject: [PATCH] microcode/extern.h (HASH_TO_FIXNUM): typo --- src/microcode/extern.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/microcode/extern.h b/src/microcode/extern.h index f18ca85ff..ec8320dce 100644 --- a/src/microcode/extern.h +++ b/src/microcode/extern.h @@ -326,7 +326,7 @@ extern uint32_t combine_hashes (uint32_t, uint32_t); #else /* Shorten the result using xor-folding. */ # define HASH_TO_FIXNUM(hash) \ - (ULONG_TO_FIXNUM (((hash) >> FIXNUM_LENGTH) ^ ((hash) & FIXNUM_MASK))); + (ULONG_TO_FIXNUM (((hash) >> FIXNUM_LENGTH) ^ ((hash) & FIXNUM_MASK))) #endif /* Random and OS utilities */ -- 2.25.1