* builds/unix/ftsystem.c (FT_Stream_Open): Add proper cast for

ft_alloc.
Fix compiler warning.
This commit is contained in:
Werner Lemberg 2004-12-28 23:08:51 +00:00
parent 4e6ea4052a
commit cc7cab815c
2 changed files with 6 additions and 2 deletions

View File

@ -12,6 +12,10 @@
* builds/unix/install-sh: Updated from
`texinfo' CVS module at subversions.gnu.org.
* builds/unix/ftsystem.c (FT_Stream_Open): Add proper cast for
ft_alloc.
Fix compiler warning.
2004-12-27 Dirck Blaskey <listtarget@danbala.com>
* src/cff/cffobjs.c (cff_face_init): Improve computation of

View File

@ -285,7 +285,7 @@
FT_ERROR(( "FT_Stream_Open:" ));
FT_ERROR(( " could not `mmap' file `%s'\n", filepathname ));
stream->base = ft_alloc( NULL, stream->size );
stream->base = (unsigned char*)ft_alloc( NULL, stream->size );
if ( !stream->base )
{
@ -315,7 +315,7 @@
total_read_count += read_count;
} while ( total_read_count != stream->size );
} while ( (unsigned long)total_read_count != stream->size );
stream->close = ft_close_stream_by_free;
}