diff options
author | Tor Andersson <tor@ghostscript.com> | 2010-06-15 20:24:17 +0200 |
---|---|---|
committer | Tor Andersson <tor@ghostscript.com> | 2010-06-15 20:24:17 +0200 |
commit | ac74a812a342852bc5d2e3c1cffdd52bd0b5f560 (patch) | |
tree | bcbdf2b12acfd0b1fd1b0eacb9c29b358227c735 /apps/pdfclean.c | |
parent | 46d91dd391ba6b90afa46e704ab679bc1a13835e (diff) | |
download | mupdf-ac74a812a342852bc5d2e3c1cffdd52bd0b5f560.tar.xz |
Explicitly return 0 from main() in the tools.
Diffstat (limited to 'apps/pdfclean.c')
-rw-r--r-- | apps/pdfclean.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/pdfclean.c b/apps/pdfclean.c index d1eff4bf..a6cf402c 100644 --- a/apps/pdfclean.c +++ b/apps/pdfclean.c @@ -444,5 +444,7 @@ int main(int argc, char **argv) savexref(); closexref(); + + return 0; } |