diff options
-rw-r--r-- | src/bytecode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bytecode.c b/src/bytecode.c index 06a800bef49..5e0055f4ee4 100644 --- a/src/bytecode.c +++ b/src/bytecode.c @@ -328,7 +328,7 @@ relocate_byte_stack (struct byte_stack *stack) /* Fetch the next byte from the bytecode stream. */ -#ifdef BYTE_CODE_SAFE +#if BYTE_CODE_SAFE #define FETCH (eassert (stack.byte_string_start == SDATA (stack.byte_string)), *stack.pc++) #else #define FETCH *stack.pc++ |