aboutsummaryrefslogtreecommitdiff
path: root/bfd/hash.c
diff options
context:
space:
mode:
Diffstat (limited to 'bfd/hash.c')
-rw-r--r--bfd/hash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/hash.c b/bfd/hash.c
index 9effba8..bccc97d 100644
--- a/bfd/hash.c
+++ b/bfd/hash.c
@@ -290,7 +290,7 @@ SUBSUBSECTION
*/
/* Obstack allocation and deallocation routines. */
-#define obstack_chunk_alloc bfd_xmalloc_by_size_t
+#define obstack_chunk_alloc xmalloc
#define obstack_chunk_free free
/* The default number of entries to use when creating a hash table. */
@@ -419,7 +419,7 @@ bfd_hash_newfunc (entry, table, string)
PTR
bfd_hash_allocate (table, size)
struct bfd_hash_table *table;
- size_t size;
+ unsigned int size;
{
return obstack_alloc (&table->memory, size);
}