From c7183e831b6fc3f42ace23266cddb6f090bf4d61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20Baczy=C5=84ski?= Date: Wed, 6 Jan 2010 23:38:35 +0100 Subject: [PATCH] fnt2bdf: Remove superfluous void* casts. --- tools/fnt2bdf.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/fnt2bdf.c b/tools/fnt2bdf.c index 5534ff9647d..89e24c805e2 100644 --- a/tools/fnt2bdf.c +++ b/tools/fnt2bdf.c @@ -290,7 +290,7 @@ static int parse_fnt_data(unsigned char* file_buffer, int length) /* malloc size = (# chars) * sizeof(WinCharS) */ - if((cpe_font_struct.dfCharTable = (WinCharS *) calloc(sizeof(WinCharS), l_len)) == NULL) + if((cpe_font_struct.dfCharTable = calloc(sizeof(WinCharS), l_len)) == NULL) return ERROR_MEMORY; /* NOW, convert them all to UNIX (lton) notation... */ @@ -649,7 +649,7 @@ static int get_resource_table(int fd, unsigned char** lpdata, int fsize) } else return FILE_ERROR; - *lpdata = (unsigned char*)malloc(size); + *lpdata = malloc(size); if( *lpdata ) { @@ -711,7 +711,7 @@ int main(int argc, char **argv) length = return_data_value(dfShort, &pFontStorage->length) << size_shift; offset = return_data_value(dfShort, &pFontStorage->offset) << size_shift; - if( !(lpfont = (unsigned char*) realloc( lpfont, length )) ) + if( !(lpfont = realloc( lpfont, length )) ) { fprintf(stderr, "Memory allocation error.\n" ); exit(1);