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


			
			
				CACHE
			
			
		
Werner Lemberg 20 years ago
parent 75073f458a
commit 1024cca1eb
  1. 4
      ChangeLog
  2. 4
      builds/unix/ftsystem.c

@ -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

@ -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;
}

Loading…
Cancel
Save