gas: fix "format string is not a string literal" errors on mips
Sponsored by: The FreeBSD Foundation
This commit is contained in:
parent
0c474a38fc
commit
5b2ee3b7e9
@ -3310,7 +3310,7 @@ macro_end (void)
|
||||
warning now. */
|
||||
const char *msg = macro_warning (subtype);
|
||||
if (msg != 0)
|
||||
as_warn (msg);
|
||||
as_warn ("%s", msg);
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -14463,7 +14463,7 @@ md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED, segT asec, fragS *fragp)
|
||||
{
|
||||
const char *msg = macro_warning (fragp->fr_subtype);
|
||||
if (msg != 0)
|
||||
as_warn_where (fragp->fr_file, fragp->fr_line, msg);
|
||||
as_warn_where (fragp->fr_file, fragp->fr_line, "%s", msg);
|
||||
}
|
||||
|
||||
/* Go through all the fixups for the first sequence. Disable them
|
||||
|
Loading…
Reference in New Issue
Block a user