diff options
author | Mike Frysinger <vapier@gentoo.org> | 2012-04-01 04:15:43 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2012-04-01 04:15:43 +0000 |
commit | 5de10af023f4409d36481733610ed7e9c2fcb8b6 (patch) | |
tree | 1f9c808f6463d84f1b612dde8e898a90158c897e /opcodes/bfin-dis.c | |
parent | e4967d72f9e2a4b0bdeb6381504c06209471d54c (diff) | |
download | gdb-5de10af023f4409d36481733610ed7e9c2fcb8b6.zip gdb-5de10af023f4409d36481733610ed7e9c2fcb8b6.tar.gz gdb-5de10af023f4409d36481733610ed7e9c2fcb8b6.tar.bz2 |
opcodes: bfin: simplify field width processing and fix build warnings
This fix the build time warning:
warning: format not a string literal, argument types not checked [-Wformat-nonliteral]
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'opcodes/bfin-dis.c')
-rw-r--r-- | opcodes/bfin-dis.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/opcodes/bfin-dis.c b/opcodes/bfin-dis.c index 130dfc7..7470ebd 100644 --- a/opcodes/bfin-dis.c +++ b/opcodes/bfin-dis.c @@ -162,16 +162,7 @@ fmtconst (const_forms_t cf, TIword x, bfd_vma pc, disassemble_info *outf) x <<= constant_formats[cf].scale; if (constant_formats[cf].decimal) - { - if (constant_formats[cf].leading) - { - char ps[10]; - sprintf (ps, "%%%ii", constant_formats[cf].leading); - sprintf (buf, ps, x); - } - else - sprintf (buf, "%li", x); - } + sprintf (buf, "%*li", constant_formats[cf].leading, x); else { if (constant_formats[cf].issigned && x < 0) |