diff options
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) |