Skip to content

Commit 34c18d4

Browse files
BeyondMagicCopilot
andauthored
style(parser): use 4 space identation
Co-authored-by: Copilot <[email protected]>
1 parent c4309ab commit 34c18d4

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/parser.y

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -558,13 +558,13 @@ static void parser_error_cleanup(AstProgram **out_program)
558558

559559
int yyerror(AstProgram **out_program, const char *msg)
560560
{
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");
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");
568568
return 0;
569569
}
570570

0 commit comments

Comments
 (0)