mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-07-03 03:07:26 +08:00
PR 10143
* config/bfin-parse.y (error): Use "%s" as format string for error message.
This commit is contained in:
@ -1,3 +1,9 @@
|
|||||||
|
2009-05-26 Nick Clifton <nickc@redhat.com>
|
||||||
|
|
||||||
|
PR 10143
|
||||||
|
* config/bfin-parse.y (error): Use "%s" as format string for error
|
||||||
|
message.
|
||||||
|
|
||||||
2009-05-26 Alan Modra <amodra@bigpond.net.au>
|
2009-05-26 Alan Modra <amodra@bigpond.net.au>
|
||||||
|
|
||||||
* dep-in.sed: Output one filename per line with all lines having
|
* dep-in.sed: Output one filename per line with all lines having
|
||||||
|
@ -169,13 +169,13 @@ int yyerror (char *msg);
|
|||||||
void error (char *format, ...)
|
void error (char *format, ...)
|
||||||
{
|
{
|
||||||
va_list ap;
|
va_list ap;
|
||||||
char buffer[2000];
|
static char buffer[2000];
|
||||||
|
|
||||||
va_start (ap, format);
|
va_start (ap, format);
|
||||||
vsprintf (buffer, format, ap);
|
vsprintf (buffer, format, ap);
|
||||||
va_end (ap);
|
va_end (ap);
|
||||||
|
|
||||||
as_bad (buffer);
|
as_bad ("%s", buffer);
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
|
Reference in New Issue
Block a user