aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/FileInputSource.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libqpdf/FileInputSource.cc')
-rw-r--r--libqpdf/FileInputSource.cc7
1 files changed, 3 insertions, 4 deletions
diff --git a/libqpdf/FileInputSource.cc b/libqpdf/FileInputSource.cc
index a5f0f4f0..0e0cfa50 100644
--- a/libqpdf/FileInputSource.cc
+++ b/libqpdf/FileInputSource.cc
@@ -18,8 +18,7 @@ FileInputSource::FileInputSource(char const* filename) :
{
}
-FileInputSource::FileInputSource(
- char const* description, FILE* filep, bool close_file) :
+FileInputSource::FileInputSource(char const* description, FILE* filep, bool close_file) :
close_file(close_file),
filename(description),
file(filep)
@@ -104,8 +103,8 @@ FileInputSource::seek(qpdf_offset_t offset, int whence)
{
if (QUtil::seek(this->file, offset, whence) == -1) {
QUtil::throw_system_error(
- std::string("seek to ") + this->filename + ", offset " +
- std::to_string(offset) + " (" + std::to_string(whence) + ")");
+ std::string("seek to ") + this->filename + ", offset " + std::to_string(offset) + " (" +
+ std::to_string(whence) + ")");
}
}