We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4309ab commit 34c18d4Copy full SHA for 34c18d4
src/parser.y
@@ -558,13 +558,13 @@ static void parser_error_cleanup(AstProgram **out_program)
558
559
int yyerror(AstProgram **out_program, const char *msg)
560
{
561
- (void)out_program;
562
- fprintf(stderr,
563
- "%s:%d:%d: syntax error: %s\n",
564
- lexer_get_source_name(),
565
- yy_token_line,
566
- yy_token_column,
567
- msg ? msg : "unknown");
+ (void)out_program;
+ fprintf(stderr,
+ "%s:%d:%d: syntax error: %s\n",
+ lexer_get_source_name(),
+ yy_token_line,
+ yy_token_column,
+ msg ? msg : "unknown");
568
return 0;
569
}
570
0 commit comments