Skip to content

Commit

Permalink
Fix small problem in a yacc test
Browse files Browse the repository at this point in the history
Signed-off-by: Mats Wichmann <[email protected]>
  • Loading branch information
mwichmann committed Feb 17, 2025
1 parent ebf4678 commit 9231c38
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,8 @@ RELEASE VERSION/DATE TO BE FILLED IN LATER
Includes code embedded in docstrings.
- Handle case of "memoizer" as one member of a comma-separated
--debug string - this was previously missed.
- test YACC/live.py fixed - finally started failing on an "old-style"
(K&R flavor) function declaration, updated.

From Adam Scott:
- Changed Ninja's TEMPLATE rule pool to use `install_pool` instead of
Expand Down
3 changes: 1 addition & 2 deletions test/YACC/live.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,7 @@
return yyparse();
}
int yyerror(s)
char *s;
int yyerror(char *s)
{
fprintf(stderr, "%%s\n", s);
return 0;
Expand Down

0 comments on commit 9231c38

Please sign in to comment.