* objdump.c: Fix formatting.

This commit is contained in:
Alan Modra 2002-06-03 13:02:04 +00:00
parent bfba206a7e
commit 28b18af1b9
2 changed files with 9 additions and 9 deletions

View File

@ -1,3 +1,7 @@
2002-06-3 Elias Athanasopoulos <eathan@otenet.gr>
* objdump.c: Fix formatting.
2002-05-29 Ben Elliston <bje@redhat.com>
* MAINTAINERS: Add self as M68k maintainer.

View File

@ -1,6 +1,6 @@
/* objdump.c -- dump information about an object file.
Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
2000, 2001
2000, 2001, 2002
Free Software Foundation, Inc.
This file is part of GNU Binutils.
@ -390,11 +390,9 @@ slurp_symtab (abfd)
storage = bfd_get_symtab_upper_bound (abfd);
if (storage < 0)
bfd_fatal (bfd_get_filename (abfd));
if (storage)
{
sy = (asymbol **) xmalloc (storage);
}
sy = (asymbol **) xmalloc (storage);
symcount = bfd_canonicalize_symtab (abfd, sy);
if (symcount < 0)
bfd_fatal (bfd_get_filename (abfd));
@ -424,11 +422,9 @@ slurp_dynamic_symtab (abfd)
bfd_fatal (bfd_get_filename (abfd));
}
if (storage)
{
sy = (asymbol **) xmalloc (storage);
}
sy = (asymbol **) xmalloc (storage);
dynsymcount = bfd_canonicalize_dynamic_symtab (abfd, sy);
if (dynsymcount < 0)
bfd_fatal (bfd_get_filename (abfd));