summaryrefslogtreecommitdiff
path: root/regexp.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>1999-11-13 04:47:09 +0000
committerEric Andersen <andersen@codepoet.org>1999-11-13 04:47:09 +0000
commitb6a44b8d39b7834ab9f6c43938f4b58f135e846e (patch)
treed9bd903d4e30ea4faf1977a514853c5aac83690c /regexp.c
parenteded54bd96ed0394844f9ba23c5ab54dff8a917f (diff)
downloadbusybox-w32-b6a44b8d39b7834ab9f6c43938f4b58f135e846e.tar.gz
busybox-w32-b6a44b8d39b7834ab9f6c43938f4b58f135e846e.tar.bz2
busybox-w32-b6a44b8d39b7834ab9f6c43938f4b58f135e846e.zip
updates for the day
Diffstat (limited to 'regexp.c')
-rw-r--r--regexp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/regexp.c b/regexp.c
index fb0170739..9f9b5c28c 100644
--- a/regexp.c
+++ b/regexp.c
@@ -135,7 +135,7 @@ static char *retext; /* points to the text being compiled */
135 135
136/* error-handling stuff */ 136/* error-handling stuff */
137jmp_buf errorhandler; 137jmp_buf errorhandler;
138#define FAIL(why) fprintf(stderr, why); longjmp(errorhandler, 1) 138#define FAIL(why) do {fprintf(stderr, why); longjmp(errorhandler, 1);} while (0)
139 139
140 140
141 141