microcode/extern.h (HASH_TO_FIXNUM): typo
authorMatt Birkholz <matt@birchwood-abbey.net>
Wed, 6 Jun 2018 15:49:35 +0000 (08:49 -0700)
committerMatt Birkholz <matt@birchwood-abbey.net>
Wed, 6 Jun 2018 15:49:35 +0000 (08:49 -0700)
src/microcode/extern.h

index f18ca85ff8212e57844b2c8c73f397e977f3ac49..ec8320dce42e1eb90ceda3f79f29d7bbfa22b7c3 100644 (file)
@@ -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 */