diff options
Diffstat (limited to 'Parser/parser.c')
-rw-r--r-- | Parser/parser.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Parser/parser.c b/Parser/parser.c index 9167a9d..1b11801 100644 --- a/Parser/parser.c +++ b/Parser/parser.c @@ -86,10 +86,8 @@ static void s_pop(s) register stack *s; { - if (s_empty(s)) { - fprintf(stderr, "s_pop: parser stack underflow -- FATAL\n"); - abort(); - } + if (s_empty(s)) + fatal("s_pop: parser stack underflow -- FATAL"); s->s_top++; } |