PATCH: Cast size to long to warn
H.J. Lu
hongjiu.lu@intel.com
Mon Dec 22 23:31:00 GMT 2014
More information about the Binutils mailing list
Mon Dec 22 23:31:00 GMT 2014
- Previous message (by thread): Experimental branches
- Next message (by thread): include/libiberty.h out of sync?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
On Linux/x32, I got gcc -mx32 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -static-libstdc++ -static-libgcc -o cxxfilt cxxfilt.o bucomm.o version.o filemode.o ../bfd/.libs/libbfd.a ../libiberty/libiberty.a -lz -ldl /export/gnu/import/git/sources/binutils-gdb/binutils/dwarf.c: In function ‘read_cie’: /export/gnu/import/git/sources/binutils-gdb/binutils/dwarf.c:5542:3: error: format ‘%lx’ expects argument of type ‘long unsigned int’, but argument 2 has type ‘int’ [-Werror=format=] (augmentation_data + augmentation_data_len) - q); ^ I checkedin this patch to fix it. H.J. --- diff --git a/binutils/ChangeLog b/binutils/ChangeLog index dc06202b..3158f5f 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +2014-12-22 H.J. Lu <hongjiu.lu@intel.com> + + * dwarf.c (read_cie): Cast size to long to warn. + 2014-12-22 Nick Clifton <nickc@redhat.com> PR binutils/17531 diff --git a/binutils/dwarf.c b/binutils/dwarf.c index 56f27ec..e4efd06 100644 --- a/binutils/dwarf.c +++ b/binutils/dwarf.c @@ -5539,7 +5539,7 @@ read_cie (unsigned char *start, unsigned char *end, if (q < qend) { warn (_("Not enough augmentation data (%lx bytes still needed)\n"), - (augmentation_data + augmentation_data_len) - q); + (long) ((augmentation_data + augmentation_data_len) - q)); augmentation_data_len = q - augmentation_data; } }
- Previous message (by thread): Experimental branches
- Next message (by thread): include/libiberty.h out of sync?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Binutils mailing list