diff options
author | Omar Polo <op@omarpolo.com> | 2021-02-07 18:08:50 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2021-02-07 18:08:50 +0000 |
commit | a13739138b17a21dbb50011cc65fb135e9f804c8 (patch) | |
tree | b8924703bc2f98a4441397adfdbd5fa0843934bc /parse.y | |
parent | 7e9b7812b3d3ef436d3aa0f793bbecd3cf08c914 (diff) |
add trailing \n in yyerror
Diffstat (limited to 'parse.y')
-rw-r--r-- | parse.y | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -205,6 +205,7 @@ yyerror(const char *msg, ...) va_start(ap, msg); fprintf(stderr, "%s:%d: ", config_path, yylineno); vfprintf(stderr, msg, ap); + fprintf(stderr, "\n"); va_end(ap); } |