summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libguile/objcodes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/objcodes.c b/libguile/objcodes.c
index c758e939b..038c4c7a1 100644
--- a/libguile/objcodes.c
+++ b/libguile/objcodes.c
@@ -53,7 +53,7 @@
"GOOF-0.6-" OBJCODE_ENDIANNESS "-" OBJCODE_WORD_SIZE "---"
/* The length of the header must be a multiple of 8 bytes. */
-verify ((sizeof (OBJCODE_COOKIE) & 7) != 0);
+verify (((sizeof (OBJCODE_COOKIE) - 1) & 7) == 0);