diff options
-rw-r--r-- | trafgen_parser.y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/trafgen_parser.y b/trafgen_parser.y index ee3d476..df234f4 100644 --- a/trafgen_parser.y +++ b/trafgen_parser.y @@ -626,5 +626,5 @@ int compile_packets(char *file, int verbose, int cpu, bool invoke_cpp) void yyerror(const char *err) { - panic("Syntax error at line%d, at char '%s'! %s!\n", yylineno, yytext, err); + panic("Syntax error at line %d, char '%s': %s\n", yylineno, yytext, err); } |