* objdump.c: Fix formatting.
authorAlan Modra <amodra@gmail.com>
Mon, 3 Jun 2002 13:02:04 +0000 (13:02 +0000)
committerAlan Modra <amodra@gmail.com>
Mon, 3 Jun 2002 13:02:04 +0000 (13:02 +0000)
binutils/ChangeLog
binutils/objdump.c

index 9197c45d9bcaa877d420ed2029aa37bbb723b01a..7f8ab70fa78f21c41cc1988ae70a9479f94cadf0 100644 (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.
index dce1308c3fb11916f581b7c33d5a184c12ae27fb..59a173161cc2352341cb07dd0705f97c9c2cc44f 100644 (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));
This page took 0.032257 seconds and 4 git commands to generate.