diff options
author | Eric Andersen | 1999-11-13 04:47:09 +0000 |
---|---|---|
committer | Eric Andersen | 1999-11-13 04:47:09 +0000 |
commit | b6a44b8d39b7834ab9f6c43938f4b58f135e846e (patch) | |
tree | d9bd903d4e30ea4faf1977a514853c5aac83690c /regexp.c | |
parent | eded54bd96ed0394844f9ba23c5ab54dff8a917f (diff) | |
download | busybox-b6a44b8d39b7834ab9f6c43938f4b58f135e846e.zip busybox-b6a44b8d39b7834ab9f6c43938f4b58f135e846e.tar.gz |
updates for the day
Diffstat (limited to 'regexp.c')
-rw-r--r-- | regexp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -135,7 +135,7 @@ static char *retext; /* points to the text being compiled */ /* error-handling stuff */ jmp_buf errorhandler; -#define FAIL(why) fprintf(stderr, why); longjmp(errorhandler, 1) +#define FAIL(why) do {fprintf(stderr, why); longjmp(errorhandler, 1);} while (0) |