diff options
author | David MacKenzie <djm@cygnus> | 1994-02-05 03:02:32 +0000 |
---|---|---|
committer | David MacKenzie <djm@cygnus> | 1994-02-05 03:02:32 +0000 |
commit | 6a5439a91f17ca12edbdced7bec34b7d7fed00e5 (patch) | |
tree | 1079ad42a50b77f736a65b2e3d07b667f9e42d1d /bfd/ecofflink.c | |
parent | 0ee3427297272a636e7ef8378182a38d64ed7b7d (diff) | |
download | gdb-6a5439a91f17ca12edbdced7bec34b7d7fed00e5.zip gdb-6a5439a91f17ca12edbdced7bec34b7d7fed00e5.tar.gz gdb-6a5439a91f17ca12edbdced7bec34b7d7fed00e5.tar.bz2 |
Eliminate arg from bfd_xmalloc_by_size_t macro, allowing
undoing of obstack parts of last change.
Diffstat (limited to 'bfd/ecofflink.c')
-rw-r--r-- | bfd/ecofflink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/ecofflink.c b/bfd/ecofflink.c index 2f3235c..306f028 100644 --- a/bfd/ecofflink.c +++ b/bfd/ecofflink.c @@ -41,7 +41,7 @@ static boolean ecoff_write_symhdr PARAMS ((bfd *, struct ecoff_debug_info *, file_ptr where)); /* Obstack allocation and deallocation routines. */ -#define obstack_chunk_alloc xmalloc +#define obstack_chunk_alloc bfd_xmalloc_by_size_t #define obstack_chunk_free free /* The minimum amount of data to allocate. */ |