aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/Pipeline.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libqpdf/Pipeline.cc')
-rw-r--r--libqpdf/Pipeline.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/libqpdf/Pipeline.cc b/libqpdf/Pipeline.cc
index 73bd1675..3f5fc3bc 100644
--- a/libqpdf/Pipeline.cc
+++ b/libqpdf/Pipeline.cc
@@ -14,8 +14,7 @@ Pipeline::getNext(bool allow_null)
{
if ((this->next == nullptr) && (!allow_null)) {
throw std::logic_error(
- this->identifier +
- ": Pipeline::getNext() called on pipeline with no next");
+ this->identifier + ": Pipeline::getNext() called on pipeline with no next");
}
return this->next;
}