summaryrefslogtreecommitdiffstats
path: root/libqpdf/Pl_MD5.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libqpdf/Pl_MD5.cc')
-rw-r--r--libqpdf/Pl_MD5.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/libqpdf/Pl_MD5.cc b/libqpdf/Pl_MD5.cc
index 358f5806..c0714839 100644
--- a/libqpdf/Pl_MD5.cc
+++ b/libqpdf/Pl_MD5.cc
@@ -26,8 +26,7 @@ Pl_MD5::write(unsigned char const* buf, size_t len)
unsigned char const* data = buf;
while (bytes_left > 0) {
size_t bytes = (bytes_left >= max_bytes ? max_bytes : bytes_left);
- this->md5.encodeDataIncrementally(
- reinterpret_cast<char const*>(data), bytes);
+ this->md5.encodeDataIncrementally(reinterpret_cast<char const*>(data), bytes);
bytes_left -= bytes;
data += bytes;
}