fnt2bdf: Remove unneeded casts of zero.
diff --git a/tools/fnt2bdf.c b/tools/fnt2bdf.c
index f204720..e6a53fa 100644
--- a/tools/fnt2bdf.c
+++ b/tools/fnt2bdf.c
@@ -209,7 +209,7 @@
     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;