fixup another old style function definition

gas/ChangeLog:

2016-06-05  Trevor Saunders  <tbsaunde+binutils@tbsaunde.org>

	* itbl-parse.y (yyerror): Use modern argument declaration style.
This commit is contained in:
Trevor Saunders 2016-05-24 08:59:35 -04:00
parent c4212e111c
commit 852a1d4942
2 changed files with 5 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2016-06-05 Trevor Saunders <tbsaunde+binutils@tbsaunde.org>
* itbl-parse.y (yyerror): Use modern argument declaration style.
2016-06-05 Trevor Saunders <tbsaunde+binutils@tbsaunde.org>
* config/tc-sh.c (parse_reg): Change type of mode argument to

View File

@ -450,8 +450,7 @@ value:
%%
static int
yyerror (msg)
const char *msg;
yyerror (const char *msg)
{
printf ("line %d: %s\n", insntbl_line, msg);
return 0;