This fixes a compile time error triggered by -Werror=format-security because

a call to sprintf was being made with a non-constant formatting string.

	* config/tc-score.c (s3_parse_pce_inst): Add "%s" parameter to
	sprintf in order to avoid a compile time warning.
This commit is contained in:
Nick Clifton 2014-03-27 09:41:06 +00:00
parent 3cc27770cf
commit cb580a265c
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2014-03-27 Nick Clifton <nickc@redhat.com>
* config/tc-score.c (s3_parse_pce_inst): Add "%s" parameter to
sprintf in order to avoid a compile time warning.
2014-03-26 Nick Clifton <nickc@redhat.com>
* config/tc-rl78.c (rl78_op): Issue an error message if a 16-bit

View File

@ -5363,7 +5363,7 @@ s3_parse_pce_inst (char *insnstr)
|| ((pec_part_1.size == s3_INSN16_SIZE) && (s3_inst.size == s3_INSN_SIZE)))
{
s3_inst.error = _("pce instruction error (16 bit || 16 bit)'");
sprintf (s3_inst.str, insnstr);
sprintf (s3_inst.str, "%s", insnstr);
return;
}