From d6b6445dae6daaa16aa3b12c2c5c3ff37aa424c3 Mon Sep 17 00:00:00 2001 From: Robin Watts Date: Thu, 2 Apr 2015 15:54:56 +0100 Subject: Bug 695900: pdfclean return code is inverted. Silly typo. Thanks to Daniel Bloemer for pointing this out. --- source/tools/pdfclean.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- cgit v1.2.3