summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorRobin Watts <robin.watts@artifex.com>2015-04-02 15:54:56 +0100
committerRobin Watts <robin.watts@artifex.com>2015-04-02 15:55:43 +0100
commitd6b6445dae6daaa16aa3b12c2c5c3ff37aa424c3 (patch)
treeb919e3908b5dad1be4c0f32fba44262924f83099 /source
parente8a8d7e317cc594a9fb2e0206c82f9de6ce96368 (diff)
downloadmupdf-d6b6445dae6daaa16aa3b12c2c5c3ff37aa424c3.tar.xz
Bug 695900: pdfclean return code is inverted.
Silly typo. Thanks to Daniel Bloemer for pointing this out.
Diffstat (limited to 'source')
-rw-r--r--source/tools/pdfclean.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/tools/pdfclean.c b/source/tools/pdfclean.c
index 2ad0c7e6..051ec4bd 100644
--- a/source/tools/pdfclean.c
+++ b/source/tools/pdfclean.c
@@ -313,5 +313,5 @@ int pdfclean_main(int argc, char **argv)
}
fz_drop_context(ctx);
- return errors == 0;
+ return errors != 0;
}