changeset 463:8b8df28857af

Fix conditional.
author Karl Heuer <kwzh@gnu.org>
date Mon, 17 Jul 1995 23:24:57 +0000
parents 115ffc5a3b13
children 75ad7d4bcf31
files regex.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/regex.c
+++ b/regex.c
@@ -260,7 +260,7 @@
 
 /* Define how to allocate the failure stack.  */
 
-#if defined (REL_ALLOC) && !defined (REGEX_MALLOC)
+#if defined (REL_ALLOC) && defined (REGEX_MALLOC)
 
 #define REGEX_ALLOCATE_STACK(size)				\
   r_alloc (&failure_stack_ptr, (size))