aboutsummaryrefslogtreecommitdiffstats
path: root/zlib-flate
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2023-05-21 19:35:09 +0200
committerJay Berkenbilt <ejb@ql.org>2023-05-21 19:35:09 +0200
commit60965d5f4d608bdccc2ffd4e8753e12cbbbd71d2 (patch)
treea707602da466c02ff1a54b3263c3a881cd7204a4 /zlib-flate
parent6b077332d38c093de2618d5e1481b42222106065 (diff)
downloadqpdf-60965d5f4d608bdccc2ffd4e8753e12cbbbd71d2.tar.zst
Rerun clang-format
Diffstat (limited to 'zlib-flate')
-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 {