2.16.93 prerelease available

Alan Modra amodra@bigpond.net.au
Thu May 18 21:51:00 GMT 2006


Fixes build breakage.  Applied to 2.17 branch.

	* avr-dis.c (avr_operand): Warning fix.

Index: opcodes/avr-dis.c
===================================================================
RCS file: /cvs/src/src/opcodes/avr-dis.c,v
retrieving revision 1.16
diff -u -p -r1.16 avr-dis.c
--- opcodes/avr-dis.c	12 Apr 2006 13:09:10 -0000	1.16
+++ opcodes/avr-dis.c	17 May 2006 23:49:05 -0000
@@ -1,5 +1,6 @@
 /* Disassemble AVR instructions.
-   Copyright 1999, 2000, 2002, 2004, 2005 Free Software Foundation, Inc.
+   Copyright 1999, 2000, 2002, 2004, 2005, 2006
+   Free Software Foundation, Inc.
 
    Contributed by Denis Chertykov <denisc@overta.ru>
 
@@ -142,7 +143,7 @@ avr_operand (unsigned int insn, unsigned
       /* 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;

-- 
Alan Modra
IBM OzLabs - Linux Technology Centre



More information about the Binutils mailing list