diff options
author | Alan Modra <amodra@gmail.com> | 2006-04-19 02:15:05 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2006-04-19 02:15:05 +0000 |
commit | 7c6646cd4bb737511abda361b27386a8a77a1147 (patch) | |
tree | 0877c0e626e6298d38857b0ab3a636607d7e34f7 /opcodes/avr-dis.c | |
parent | * ldlang.c (wild): Tidy default_common_section loop. (diff) | |
download | binutils-gdb-7c6646cd4bb737511abda361b27386a8a77a1147.tar.gz binutils-gdb-7c6646cd4bb737511abda361b27386a8a77a1147.tar.bz2 binutils-gdb-7c6646cd4bb737511abda361b27386a8a77a1147.zip |
* avr-dis.c (avr_operand): Warning fix.
Diffstat (limited to 'opcodes/avr-dis.c')
-rw-r--r-- | opcodes/avr-dis.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |