]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
A simple replacement of sprintf (xxx, "%s", xxx) with strcpy.
authorChen Gang <gang.chen.5i5j@gmail.com>
Fri, 13 Jun 2014 14:52:55 +0000 (15:52 +0100)
committerNick Clifton <nickc@redhat.com>
Fri, 13 Jun 2014 14:52:55 +0000 (15:52 +0100)
* config/tc-score7.c: Replace sprintf with strcpy where
appropriate.

gas/ChangeLog
gas/config/tc-score7.c

index fd331d7986338fb895032c9eebfaaa23da9e9e13..265a272274207ba94818576a20b9c5dea3bdc99c 100644 (file)
@@ -1,3 +1,8 @@
+2014-06-13  Chen Gang  <gang.chen.5i5j@gmail.com>
+
+       * config/tc-score7.c: Replace sprintf with strcpy where
+       appropriate.
+
 2014-06-07  Alan Modra  <amodra@gmail.com>
 
        * config/tc-ppc.c (ppc_insert_operand): Handle PPC_OPERAND_SIGNOPT
index 0a0db2db23ce194d024d77212024a0fdf7d47b00..4719680e0c7e1cd1dbc84c07d1b398fa98a02155 100644 (file)
@@ -2795,7 +2795,7 @@ s7_parse_16_32_inst (char *insnstr, bfd_boolean gen_frag_p)
   *p = c;
 
   memset (&s7_inst, '\0', sizeof (s7_inst));
-  sprintf (s7_inst.str, "%s", insnstr);
+  strcpy (s7_inst.str, insnstr);
   if (opcode)
     {
       s7_inst.instruction = opcode->value;
@@ -2804,7 +2804,7 @@ s7_parse_16_32_inst (char *insnstr, bfd_boolean gen_frag_p)
       s7_inst.size = s7_GET_INSN_SIZE (s7_inst.type);
       s7_inst.relax_size = 0;
       s7_inst.bwarn = 0;
-      sprintf (s7_inst.name, "%s", opcode->template_name);
+      strcpy (s7_inst.name, opcode->template_name);
       strcpy (s7_inst.reg, "");
       s7_inst.error = NULL;
       s7_inst.reloc.type = BFD_RELOC_NONE;
@@ -5308,12 +5308,12 @@ s7_parse_pce_inst (char *insnstr)
   p = strstr (insnstr, "||");
   c = *p;
   *p = '\0';
-  sprintf (first, "%s", insnstr);
+  strcpy (first, insnstr);
 
   /* Get second part string of PCE.  */
   *p = c;
   p += 2;
-  sprintf (second, "%s", p);
+  strcpy (second, p);
 
   s7_parse_16_32_inst (first, FALSE);
   if (s7_inst.error)
@@ -5337,7 +5337,7 @@ s7_parse_pce_inst (char *insnstr)
       || ((pec_part_1.size == s7_INSN16_SIZE) && (s7_inst.size == s7_INSN_SIZE)))
     {
       s7_inst.error = _("pce instruction error (16 bit || 16 bit)'");
-      sprintf (s7_inst.str, insnstr);
+      strcpy (s7_inst.str, insnstr);
       return;
     }