From 963c88d67500b581fd4d44d4f561089c66bf7c56 Mon Sep 17 00:00:00 2001 From: Alan Coopersmith Date: Tue, 24 Apr 2007 20:04:39 -0700 Subject: Fix sparse warning: Using plain integer as NULL pointer --- bdftopcf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bdftopcf.c b/bdftopcf.c index 9049657..63ac129 100644 --- a/bdftopcf.c +++ b/bdftopcf.c @@ -45,7 +45,7 @@ main (int argc, char *argv[]) { FontRec font; FontFilePtr input, output; - char *input_name = 0, *output_name = 0; + char *input_name = NULL, *output_name = NULL; char *program_name; int bit, byte, glyph, scan; -- cgit v1.2.3