summaryrefslogtreecommitdiff
path: root/apps/pdfclean.c
diff options
context:
space:
mode:
authorSebastian Rasmussen <sebras@hotmail.com>2010-12-30 15:43:42 +0000
committerSebastian Rasmussen <sebras@hotmail.com>2010-12-30 15:43:42 +0000
commit559252258781ed2f0eecd34d16a7b84ec52c0e21 (patch)
tree3efbcada2f2e940f44f5212b595503d52e0e8fd4 /apps/pdfclean.c
parent6e2a8f21f83b87bbf0530d92f809a3aea6aba724 (diff)
downloadmupdf-559252258781ed2f0eecd34d16a7b84ec52c0e21.tar.xz
Adhere to nil idiom.
Diffstat (limited to 'apps/pdfclean.c')
-rw-r--r--apps/pdfclean.c12
1 files changed, 6 insertions, 6 deletions
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)
{