aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpacien2018-11-25 22:30:27 +0100
committerpacien2018-11-25 22:30:27 +0100
commit8328b00bbe8660d9265de10daf3c840001260ef4 (patch)
tree61d00b88afc54c7319daff196316875277af3c4e
parent30b8c8e9448c830ffccb0941aa3cac7a6cbb1a34 (diff)
downloadgziplike-8328b00bbe8660d9265de10daf3c840001260ef4.tar.gz
Revert "Fix block aligment"
This reverts commit c72f900ccc894aa8830ffe500e88aa0afc0ca8a0.
-rw-r--r--src/rawblock.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rawblock.nim b/src/rawblock.nim
index bf4de28..0a44550 100644
--- a/src/rawblock.nim
+++ b/src/rawblock.nim
@@ -16,7 +16,7 @@
16 16
17import integers, bitreader, bitwriter 17import integers, bitreader, bitwriter
18 18
19const maxDataBitLength = ((high(uint16).int - 1) div wordBitLength) * wordBitLength 19const maxDataBitLength = high(uint16).int - 1
20const bitLengthFieldBitLength = 2 * wordBitLength 20const bitLengthFieldBitLength = 2 * wordBitLength
21 21
22type RawBlock* = object 22type RawBlock* = object