OSDN Git Service

Fix my last change to actually compile.
authorAlan Modra <amodra@bigpond.net.au>
Tue, 10 Oct 2000 23:38:27 +0000 (23:38 +0000)
committerAlan Modra <amodra@bigpond.net.au>
Tue, 10 Oct 2000 23:38:27 +0000 (23:38 +0000)
bfd/ChangeLog
bfd/ieee.c

index 4f2fb8d..0376e8c 100644 (file)
@@ -1,3 +1,7 @@
+2000-10-11  Alan Modra  <alan@linuxcare.com.au>
+
+       * ieee.c (ieee_make_empty_symbol): Oops, bfd_zalloc needs another arg.
+
 2000-10-10  Alan Modra  <alan@linuxcare.com.au>
 
        * ieee.c (ieee_make_empty_symbol): Use bfd_zalloc, not bfd_zmalloc.
index 97ad7cc..69d3edc 100644 (file)
@@ -3725,7 +3725,7 @@ ieee_make_empty_symbol (abfd)
      bfd *abfd;
 {
   ieee_symbol_type *new =
-    (ieee_symbol_type *) bfd_zalloc (sizeof (ieee_symbol_type));
+    (ieee_symbol_type *) bfd_zalloc (abfd, sizeof (ieee_symbol_type));
   if (!new)
     return NULL;
   new->symbol.the_bfd = abfd;