aboutsummaryrefslogtreecommitdiffstats
path: root/examples/qpdf-job.cc
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2023-12-23 03:45:10 +0100
committerJay Berkenbilt <ejb@ql.org>2023-12-23 03:45:10 +0100
commit7c0fdf8510fbc09a6a8f872d1c95f1d6e1709f28 (patch)
tree27e95477224c614b8da1d15380903c49bc527ee7 /examples/qpdf-job.cc
parentc0c7cef16cb666524e4809834063cfee5262eca1 (diff)
downloadqpdf-7c0fdf8510fbc09a6a8f872d1c95f1d6e1709f28.tar.zst
Format code, bump clang-format version to 18
Diffstat (limited to 'examples/qpdf-job.cc')
-rw-r--r--examples/qpdf-job.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/examples/qpdf-job.cc b/examples/qpdf-job.cc
index 99b853ea..3e6e99bd 100644
--- a/examples/qpdf-job.cc
+++ b/examples/qpdf-job.cc
@@ -11,10 +11,10 @@ static void
usage()
{
std::cerr << "Usage: " << whoami << std::endl
- << "This program linearizes the first page of in.pdf to out1.pdf,"
- << " out2.pdf, and" << std::endl
- << " out3.pdf, each demonstrating a different way to use the"
- << " QPDFJob API" << std::endl;
+ << "This program linearizes the first page of in.pdf to out1.pdf, out2.pdf, and"
+ << std::endl
+ << " out3.pdf, each demonstrating a different way to use the QPDFJob API"
+ << std::endl;
exit(2);
}
@@ -43,7 +43,7 @@ main(int argc, char* argv[])
->pageSpec(".", "1")
->endPages()
->linearize()
- ->staticId() // for testing only
+ ->staticId() // for testing only
->compressStreams("n") // avoid dependency on zlib output
->checkConfiguration();
j.run();