aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/BitStream.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libqpdf/BitStream.cc')
-rw-r--r--libqpdf/BitStream.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/libqpdf/BitStream.cc b/libqpdf/BitStream.cc
index 504e35c4..35b9e63e 100644
--- a/libqpdf/BitStream.cc
+++ b/libqpdf/BitStream.cc
@@ -47,8 +47,10 @@ BitStream::getBitsSigned(size_t nbits)
int
BitStream::getBitsInt(size_t nbits)
{
- return static_cast<int>(QIntC::to_uint(
- read_bits(this->p, this->bit_offset, this->bits_available, nbits)));
+ return static_cast<int>(
+ // line-break
+ QIntC::to_uint(
+ read_bits(this->p, this->bit_offset, this->bits_available, nbits)));
}
void