From: Matt Birkholz Date: Wed, 6 Jun 2018 15:49:35 +0000 (-0700) Subject: microcode/extern.h (HASH_TO_FIXNUM): typo X-Git-Tag: mit-scheme-pucked-9.2.13^2 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=ae419a1012e6b42c8bf6d834a2a3ed4672672699;p=mit-scheme.git microcode/extern.h (HASH_TO_FIXNUM): typo --- 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 */