aboutsummaryrefslogtreecommitdiffstats
path: root/src/regex.c
diff options
context:
space:
mode:
authorKarl Heuer <[email protected]>1995-07-17 23:24:57 +0000
committerKarl Heuer <[email protected]>1995-07-17 23:24:57 +0000
commit33487cc80b0d0280c5dcffec27d897f370cc037f (patch)
tree2be80b98bd388a851d9f9a81fa126bb9706a6e46 /src/regex.c
parent88415bfc716efcce1f233ce2029caf5abde90e57 (diff)
Fix conditional.
Diffstat (limited to 'src/regex.c')
-rw-r--r--src/regex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/regex.c b/src/regex.c
index 1af5ab0edc..9bb15d7366 100644
--- a/src/regex.c
+++ b/src/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))