aboutsummaryrefslogtreecommitdiff
path: root/opcodes/arm-dis.c
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2001-09-19 17:40:28 +0000
committerNick Clifton <nickc@redhat.com>2001-09-19 17:40:28 +0000
commitd5b2f4d67cf654227d255e7e72c5f85fe2f020ee (patch)
tree5436d1ebdf67f851d5975ae38520168ac79e8771 /opcodes/arm-dis.c
parent38131e6744be32896c1259d5db95a1f492c11533 (diff)
downloadgdb-d5b2f4d67cf654227d255e7e72c5f85fe2f020ee.zip
gdb-d5b2f4d67cf654227d255e7e72c5f85fe2f020ee.tar.gz
gdb-d5b2f4d67cf654227d255e7e72c5f85fe2f020ee.tar.bz2
Fix compile time warning messages
Diffstat (limited to 'opcodes/arm-dis.c')
-rw-r--r--opcodes/arm-dis.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/opcodes/arm-dis.c b/opcodes/arm-dis.c
index a36dd1a..61038ae 100644
--- a/opcodes/arm-dis.c
+++ b/opcodes/arm-dis.c
@@ -1105,7 +1105,7 @@ the -M switch:\n"));
for (i = NUM_ARM_REGNAMES; i--;)
fprintf (stream, " reg-names-%s %*c%s\n",
regnames[i].name,
- 14 - strlen (regnames[i].name), ' ',
+ (int)(14 - strlen (regnames[i].name)), ' ',
regnames[i].description);
fprintf (stream, " force-thumb Assume all insns are Thumb insns\n");