mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-23 12:09:49 +00:00
2014-11-05 Jan-Benedict Glaw <jbglaw@lug-owl.de>
* readelf.c (process_mips_specific): Fix format string warning.
This commit is contained in:
parent
20ad5e2842
commit
7fc5ac5716
@ -1,3 +1,7 @@
|
||||
2014-11-05 Jan-Benedict Glaw <jbglaw@lug-owl.de>
|
||||
|
||||
* readelf.c (process_mips_specific): Fix format string warning.
|
||||
|
||||
2014-11-04 Matthew Fortune <matthew.fortune@imgtec.com>
|
||||
|
||||
* readelf.c (process_mips_specific): Rename index to idx.
|
||||
@ -45,7 +49,7 @@
|
||||
unsigned long.
|
||||
|
||||
2014-10-31 Andrew Pinski <apinski@cavium.com>
|
||||
Naveen H.S <Naveen.Hurugalawadi@caviumnetworks.com>
|
||||
Naveen H.S <Naveen.Hurugalawadi@caviumnetworks.com>
|
||||
|
||||
* readelf.c (print_mips_isa_ext): Print the value of Octeon3.
|
||||
|
||||
|
@ -13519,7 +13519,8 @@ process_mips_specific (FILE * file)
|
||||
printf (_("<corrupt: %14ld>"), psym->st_name);
|
||||
}
|
||||
else
|
||||
printf (_("<symbol index %lu exceeds number of dynamic symbols>"), i);
|
||||
printf (_("<symbol index %lu exceeds number of dynamic symbols>"),
|
||||
(unsigned long) i);
|
||||
|
||||
printf ("\n");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user