projects
/
binutils-gdb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fe268b6
)
Fix my last change to actually compile.
author
Alan Modra
<amodra@gmail.com>
Tue, 10 Oct 2000 23:38:27 +0000
(23:38 +0000)
committer
Alan Modra
<amodra@gmail.com>
Tue, 10 Oct 2000 23:38:27 +0000
(23:38 +0000)
bfd/ChangeLog
patch
|
blob
|
history
bfd/ieee.c
patch
|
blob
|
history
diff --git
a/bfd/ChangeLog
b/bfd/ChangeLog
index 4f2fb8dd3b3f510f9b5c8a9c9e529942b46a21ea..0376e8c4ee96e042fad281c86f55f11ebb687c24 100644
(file)
--- a/
bfd/ChangeLog
+++ b/
bfd/ChangeLog
@@
-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.
diff --git
a/bfd/ieee.c
b/bfd/ieee.c
index 97ad7cc844e0b2f0f757cf7300b79bafc2d56694..69d3edc36ccb37d8308605d5c00e2a208aa5f35d 100644
(file)
--- a/
bfd/ieee.c
+++ b/
bfd/ieee.c
@@
-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;