mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-27 22:10:32 +00:00
2005-03-18 Paul Brook <paul@codesourcery.com>
* objdump.c (objdump_print_addr): Avoid uninitialized warning.
This commit is contained in:
parent
ebdb038304
commit
58450b3bbc
@ -1,3 +1,7 @@
|
||||
2005-03-18 Paul Brook <paul@codesourcery.com>
|
||||
|
||||
* objdump.c (objdump_print_addr): Avoid uninitialized warning.
|
||||
|
||||
2005-03-17 Diego Novillo <dnovillo@redhat.com>
|
||||
|
||||
* MAINTAINERS: Remove self as maintainer of x86 intel
|
||||
|
@ -854,7 +854,7 @@ objdump_print_addr (bfd_vma vma,
|
||||
bfd_boolean skip_zeroes)
|
||||
{
|
||||
struct objdump_disasm_info *aux;
|
||||
asymbol *sym;
|
||||
asymbol *sym = NULL; /* Initialize to avoid compiler warning. */
|
||||
#ifdef DISASSEMBLER_NEEDS_RELOCS
|
||||
bfd_boolean skip_find = FALSE;
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user