diff options
Diffstat (limited to 'bfd/elf-strtab.c')
-rw-r--r-- | bfd/elf-strtab.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/elf-strtab.c b/bfd/elf-strtab.c index 04a746e..d3e50c7 100644 --- a/bfd/elf-strtab.c +++ b/bfd/elf-strtab.c @@ -95,7 +95,7 @@ struct elf_strtab_hash * _bfd_elf_strtab_init (void) { struct elf_strtab_hash *table; - bfd_size_type amt = sizeof (struct elf_strtab_hash); + size_t amt = sizeof (struct elf_strtab_hash); table = (struct elf_strtab_hash *) bfd_malloc (amt); if (table == NULL) |