diff options
author | Alan Coopersmith <alan.coopersmith@sun.com> | 2007-04-24 20:04:39 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@sun.com> | 2007-04-24 20:04:39 -0700 |
commit | 963c88d67500b581fd4d44d4f561089c66bf7c56 (patch) | |
tree | 9f65d5616d164dc33ea365dc6b3c695394bb7de2 /bdftopcf.c | |
parent | 7206fb39a668384dfba3c8436222722123f4c9ff (diff) |
Fix sparse warning: Using plain integer as NULL pointer
Diffstat (limited to 'bdftopcf.c')
-rw-r--r-- | bdftopcf.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |