aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/Pipeline.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libqpdf/Pipeline.cc')
-rw-r--r--libqpdf/Pipeline.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/libqpdf/Pipeline.cc b/libqpdf/Pipeline.cc
index e4ad3741..097ed0f2 100644
--- a/libqpdf/Pipeline.cc
+++ b/libqpdf/Pipeline.cc
@@ -17,9 +17,9 @@ Pipeline::getNext(bool allow_null)
{
if ((this->next == 0) && (! allow_null))
{
- throw std::logic_error(
- this->identifier +
- ": Pipeline::getNext() called on pipeline with no next");
+ throw std::logic_error(
+ this->identifier +
+ ": Pipeline::getNext() called on pipeline with no next");
}
return this->next;
}