Make arg to zalloc a bfd_size_type not a size_t

This commit is contained in:
Jim Kingdon 1991-05-03 01:59:25 +00:00
parent bf475b4991
commit ede87e2901
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ _bfd_dummy_target (ignore_abfd)
#ifndef zalloc
char *
zalloc (size)
size_t size;
bfd_size_type size;
{
char *ptr = (char *) malloc (size);