aboutsummaryrefslogtreecommitdiffstats
path: root/zlib-flate/zlib-flate.cc
diff options
context:
space:
mode:
Diffstat (limited to 'zlib-flate/zlib-flate.cc')
-rw-r--r--zlib-flate/zlib-flate.cc9
1 files changed, 3 insertions, 6 deletions
diff --git a/zlib-flate/zlib-flate.cc b/zlib-flate/zlib-flate.cc
index bc076194..1b1743b0 100644
--- a/zlib-flate/zlib-flate.cc
+++ b/zlib-flate/zlib-flate.cc
@@ -14,8 +14,7 @@ static char const* whoami = nullptr;
void
usage()
{
- std::cerr << "Usage: " << whoami << " { -uncompress | -compress[=n] }"
- << std::endl
+ std::cerr << "Usage: " << whoami << " { -uncompress | -compress[=n] }" << std::endl
<< "If n is specified with -compress, it is a"
<< " zlib compression level from" << std::endl
<< "1 to 9 where lower numbers are faster and"
@@ -34,8 +33,7 @@ main(int argc, char* argv[])
}
if ((argc == 2) && (strcmp(argv[1], "--version") == 0)) {
- std::cout << whoami << " from qpdf version " << QPDF::QPDFVersion()
- << std::endl;
+ std::cout << whoami << " from qpdf version " << QPDF::QPDFVersion() << std::endl;
exit(0);
}
@@ -64,8 +62,7 @@ main(int argc, char* argv[])
bool warn = false;
flate->setWarnCallback([&warn](char const* msg, int code) {
warn = true;
- std::cerr << whoami << ": WARNING: zlib code " << code
- << ", msg = " << msg << std::endl;
+ std::cerr << whoami << ": WARNING: zlib code " << code << ", msg = " << msg << std::endl;
});
try {