fnt2bdf: Remove unneeded casts of zero.

This commit is contained in:
Francois Gouget 2008-12-08 09:25:18 +01:00 committed by Alexandre Julliard
parent df949b4e86
commit a70fbaeec7
1 changed files with 1 additions and 1 deletions

View File

@ -209,7 +209,7 @@ static int dump_bdf( fnt_fontS* cpe_font_struct, unsigned char* file_buffer)
if( (ic = make_bdf_filename(l_filename, cpe_font_struct, file_buffer)) )
return ic;
if((fp = fopen(l_filename, "w")) == (FILE *) 0)
if((fp = fopen(l_filename, "w")) == NULL)
{
fprintf(stderr, "Couldn't open \"%s\" for output.\n", l_filename);
return ERROR_FILE;