From 559252258781ed2f0eecd34d16a7b84ec52c0e21 Mon Sep 17 00:00:00 2001 From: Sebastian Rasmussen Date: Thu, 30 Dec 2010 15:43:42 +0000 Subject: Adhere to nil idiom. --- apps/pdfclean.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'apps/pdfclean.c') diff --git a/apps/pdfclean.c b/apps/pdfclean.c index 430e1ac4..fbea8fd4 100644 --- a/apps/pdfclean.c +++ b/apps/pdfclean.c @@ -12,18 +12,18 @@ #include "fitz.h" #include "mupdf.h" -static FILE *out = NULL; +static FILE *out = nil; -static char *uselist = NULL; -static int *ofslist = NULL; -static int *genlist = NULL; -static int *renumbermap = NULL; +static char *uselist = nil; +static int *ofslist = nil; +static int *genlist = nil; +static int *renumbermap = nil; static int dogarbage = 0; static int doexpand = 0; static int doascii = 0; -static pdf_xref *xref = NULL; +static pdf_xref *xref = nil; void die(fz_error error) { -- cgit v1.2.3