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

index 4f2fb8dd3b3f510f9b5c8a9c9e529942b46a21ea..0376e8c4ee96e042fad281c86f55f11ebb687c24 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 97ad7cc844e0b2f0f757cf7300b79bafc2d56694..69d3edc36ccb37d8308605d5c00e2a208aa5f35d 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;