diff options
author | Robin Watts <robin.watts@artifex.com> | 2015-04-02 15:54:56 +0100 |
---|---|---|
committer | Robin Watts <robin.watts@artifex.com> | 2015-04-02 15:55:43 +0100 |
commit | d6b6445dae6daaa16aa3b12c2c5c3ff37aa424c3 (patch) | |
tree | b919e3908b5dad1be4c0f32fba44262924f83099 | |
parent | e8a8d7e317cc594a9fb2e0206c82f9de6ce96368 (diff) | |
download | mupdf-d6b6445dae6daaa16aa3b12c2c5c3ff37aa424c3.tar.xz |
Bug 695900: pdfclean return code is inverted.
Silly typo. Thanks to Daniel Bloemer for pointing this out.
-rw-r--r-- | source/tools/pdfclean.c | 2 |
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; } |