From 8318d81ada86d4ec8e343c47103932b6bbe45a42 Mon Sep 17 00:00:00 2001 From: Jay Berkenbilt Date: Sun, 24 Jun 2012 15:26:28 -0400 Subject: Fix and test support for files >= 4 GB --- libqpdf/BitWriter.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libqpdf/BitWriter.cc') diff --git a/libqpdf/BitWriter.cc b/libqpdf/BitWriter.cc index 441501cb..4fb375cb 100644 --- a/libqpdf/BitWriter.cc +++ b/libqpdf/BitWriter.cc @@ -12,7 +12,7 @@ BitWriter::BitWriter(Pipeline* pl) : } void -BitWriter::writeBits(unsigned long val, unsigned int bits) +BitWriter::writeBits(unsigned long long val, unsigned int bits) { write_bits(this->ch, this->bit_offset, val, bits, this->pl); } -- cgit v1.2.3-54-g00ecf