diff options
Diffstat (limited to 't/yflags-force-override.sh')
-rw-r--r-- | t/yflags-force-override.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/yflags-force-override.sh b/t/yflags-force-override.sh index 2d5cb55e1..1346c1259 100644 --- a/t/yflags-force-override.sh +++ b/t/yflags-force-override.sh @@ -37,7 +37,7 @@ END cat > foo.y << 'END' %{ int yylex () { return 0; } -void yyerror (char *s) { return; } +void yyerror (const char *s) {} int main () { return 0; } %} %% |