diff options
author | Nick Clifton <nickc@redhat.com> | 2008-11-06 12:03:24 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2008-11-06 12:03:24 +0000 |
commit | c8941035c5d1c44080f7df0ea6221b4865f4772c (patch) | |
tree | d6b39d66c9fe6ebe9537fa6a72b22cc4179173c6 /opcodes/avr-dis.c | |
parent | c82fbeee5970971ab2988ab7fda3439719df09ab (diff) | |
download | gdb-c8941035c5d1c44080f7df0ea6221b4865f4772c.zip gdb-c8941035c5d1c44080f7df0ea6221b4865f4772c.tar.gz gdb-c8941035c5d1c44080f7df0ea6221b4865f4772c.tar.bz2 |
* avr-dis.c: Replace uses of sprintf without a format string with
calls to strcpy.
Diffstat (limited to 'opcodes/avr-dis.c')
-rw-r--r-- | opcodes/avr-dis.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/opcodes/avr-dis.c b/opcodes/avr-dis.c index 17f9eb1..976c371 100644 --- a/opcodes/avr-dis.c +++ b/opcodes/avr-dis.c @@ -1,5 +1,5 @@ /* Disassemble AVR instructions. - Copyright 1999, 2000, 2002, 2004, 2005, 2006, 2007 + Copyright 1999, 2000, 2002, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. Contributed by Denis Chertykov <denisc@overta.ru> @@ -109,7 +109,7 @@ avr_operand (unsigned int insn, unsigned int insn2, unsigned int pc, int constra case 0x100e: xyz = "-X"; break; default: xyz = "??"; ok = 0; } - sprintf (buf, xyz); + strcpy (buf, xyz); if (AVR_UNDEF_P (insn)) sprintf (comment, _("undefined")); @@ -149,7 +149,7 @@ avr_operand (unsigned int insn, unsigned int insn2, unsigned int pc, int constra value of the address only once, but this would mean recoding objdump_print_address() which would affect many targets. */ sprintf (buf, "%#lx", (unsigned long) *sym_addr); - sprintf (comment, comment_start); + strcpy (comment, comment_start); break; case 'L': @@ -158,7 +158,7 @@ avr_operand (unsigned int insn, unsigned int insn2, unsigned int pc, int constra sprintf (buf, ".%+-8d", rel_addr); *sym = 1; *sym_addr = pc + 2 + rel_addr; - sprintf (comment, comment_start); + strcpy (comment, comment_start); } break; @@ -169,7 +169,7 @@ avr_operand (unsigned int insn, unsigned int insn2, unsigned int pc, int constra sprintf (buf, ".%+-8d", rel_addr); *sym = 1; *sym_addr = pc + 2 + rel_addr; - sprintf (comment, comment_start); + strcpy (comment, comment_start); } break; |