diff options
Diffstat (limited to 'gdb/ada-exp.y')
-rw-r--r-- | gdb/ada-exp.y | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/ada-exp.y b/gdb/ada-exp.y index d9fcdfa..1eea454 100644 --- a/gdb/ada-exp.y +++ b/gdb/ada-exp.y @@ -77,7 +77,7 @@ int yyparse (void); static int yylex (void); -void yyerror (char *); +void yyerror (const char *); static void write_int (struct parser_state *, LONGEST, struct type *); @@ -751,7 +751,7 @@ ada_parse (struct parser_state *par_state) } void -yyerror (char *msg) +yyerror (const char *msg) { error (_("Error in expression, near `%s'."), lexptr); } |