From: Nick Clifton Date: Thu, 27 Mar 2014 09:41:06 +0000 (+0000) Subject: This fixes a compile time error triggered by -Werror=format-security because X-Git-Tag: gdb-7.8-release~714 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cb580a265c0344b2acfc3059b53689863378f5ed;p=external%2Fbinutils.git 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. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 38362f5..bdb7c2f 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2014-03-27 Nick Clifton + + * 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 * config/tc-rl78.c (rl78_op): Issue an error message if a 16-bit diff --git a/gas/config/tc-score.c b/gas/config/tc-score.c index 8ca273c..6242b8c 100644 --- a/gas/config/tc-score.c +++ b/gas/config/tc-score.c @@ -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; }