aboutsummaryrefslogtreecommitdiff
path: root/opcodes/v850-dis.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2012-08-01 00:41:35 +0000
committerAlan Modra <amodra@gmail.com>2012-08-01 00:41:35 +0000
commit488916061e57e6b83b8229475789a78b8f7b5fb1 (patch)
treee8301eef615a026bb5a56f653774953e6272890b /opcodes/v850-dis.c
parent3a3617baaa1c87366cd73d970524b17adb262b57 (diff)
downloadgdb-488916061e57e6b83b8229475789a78b8f7b5fb1.zip
gdb-488916061e57e6b83b8229475789a78b8f7b5fb1.tar.gz
gdb-488916061e57e6b83b8229475789a78b8f7b5fb1.tar.bz2
* h8300-dis.c: Fix printf arg warnings.
* i960-dis.c: Likewise. * mips-dis.c: Likewise. * pdp11-dis.c: Likewise. * sh-dis.c: Likewise. * v850-dis.c: Likewise. * configure.in: Formatting. * configure: Regenerate. * rl78-decode.c: Regenerate. * po/POTFILES.in: Regenerate.
Diffstat (limited to 'opcodes/v850-dis.c')
-rw-r--r--opcodes/v850-dis.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/opcodes/v850-dis.c b/opcodes/v850-dis.c
index b4e786e..60b452b 100644
--- a/opcodes/v850-dis.c
+++ b/opcodes/v850-dis.c
@@ -406,7 +406,7 @@ disassemble (bfd_vma memaddr, struct disassemble_info *info, int bytes_read, uns
else
shown_one = 1;
- info->fprintf_func (info->stream, v850_reg_names[first]);
+ info->fprintf_func (info->stream, "%s", v850_reg_names[first]);
for (bit++; bit < 32; bit++)
if ((mask & (1 << bit)) == 0)