aboutsummaryrefslogtreecommitdiff
path: root/bfd/tekhex.c
diff options
context:
space:
mode:
Diffstat (limited to 'bfd/tekhex.c')
-rw-r--r--bfd/tekhex.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/tekhex.c b/bfd/tekhex.c
index d7243c4..aaaffa0 100644
--- a/bfd/tekhex.c
+++ b/bfd/tekhex.c
@@ -428,7 +428,7 @@ first_phase (bfd *abfd, int type, char *src, char * src_end)
case '8':
/* Symbols, add to section. */
{
- bfd_size_type amt = sizeof (tekhex_symbol_type);
+ size_t amt = sizeof (tekhex_symbol_type);
tekhex_symbol_type *new_symbol = (tekhex_symbol_type *)
bfd_alloc (abfd, amt);
char stype = (*src);
@@ -912,7 +912,7 @@ tekhex_sizeof_headers (bfd *abfd ATTRIBUTE_UNUSED,
static asymbol *
tekhex_make_empty_symbol (bfd *abfd)
{
- bfd_size_type amt = sizeof (struct tekhex_symbol_struct);
+ size_t amt = sizeof (struct tekhex_symbol_struct);
tekhex_symbol_type *new_symbol = (tekhex_symbol_type *) bfd_zalloc (abfd,
amt);