summaryrefslogtreecommitdiff
path: root/bdftopcf.c
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@sun.com>2007-04-24 20:04:39 -0700
committerAlan Coopersmith <alan.coopersmith@sun.com>2007-04-24 20:04:39 -0700
commit963c88d67500b581fd4d44d4f561089c66bf7c56 (patch)
tree9f65d5616d164dc33ea365dc6b3c695394bb7de2 /bdftopcf.c
parent7206fb39a668384dfba3c8436222722123f4c9ff (diff)
Fix sparse warning: Using plain integer as NULL pointer
Diffstat (limited to 'bdftopcf.c')
-rw-r--r--bdftopcf.c2
1 files changed, 1 insertions, 1 deletions
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;