summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Modra <amodra@bigpond.net.au>2006-04-19 02:15:05 +0000
committerAlan Modra <amodra@bigpond.net.au>2006-04-19 02:15:05 +0000
commit7d56cad7460d43f26cc249f4154abeb18aa447f7 (patch)
treedfb645cbd8b4003891601bc600ef7381c74d7fe0
parent9387962d752fdef56cb9c899ab65707eb50a4555 (diff)
downloadgdb-7d56cad7460d43f26cc249f4154abeb18aa447f7.tar.gz
* avr-dis.c (avr_operand): Warning fix.
-rw-r--r--opcodes/ChangeLog2
-rw-r--r--opcodes/avr-dis.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog
index 9a848faaaa8..657f66ab7b7 100644
--- a/opcodes/ChangeLog
+++ b/opcodes/ChangeLog
@@ -1,5 +1,7 @@
2006-04-19 Alan Modra <amodra@bigpond.net.au>
+ * avr-dis.c (avr_operand): Warning fix.
+
* configure: Regenerate.
2006-04-16 Daniel Jacobowitz <dan@codesourcery.com>
diff --git a/opcodes/avr-dis.c b/opcodes/avr-dis.c
index 7938dcadbaf..ac3775212e8 100644
--- a/opcodes/avr-dis.c
+++ b/opcodes/avr-dis.c
@@ -142,7 +142,7 @@ avr_operand (unsigned int insn, unsigned int insn2, unsigned int pc, int constra
/* See PR binutils/2545. Ideally we would like to display the hex
value of the address only once, but this would mean recoding
objdump_print_address() which would affect many targets. */
- sprintf (buf, "%#lx", * sym_addr);
+ sprintf (buf, "%#lx", (unsigned long ) *sym_addr);
sprintf (comment, "0x");
break;