Fix conditional.
authorKarl Heuer <kwzh@gnu.org>
Mon, 17 Jul 1995 23:24:57 +0000 (23:24 +0000)
committerKarl Heuer <kwzh@gnu.org>
Mon, 17 Jul 1995 23:24:57 +0000 (23:24 +0000)
regex.c

diff --git a/regex.c b/regex.c
index 1af5ab0..9bb15d7 100644 (file)
--- a/regex.c
+++ b/regex.c
@@ -260,7 +260,7 @@ char *alloca ();
 
 /* 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))