diff options
Diffstat (limited to 'src/lzss')
-rw-r--r-- | src/lzss/lzsschain.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lzss/lzsschain.nim b/src/lzss/lzsschain.nim index 2ecff9e..8b49914 100644 --- a/src/lzss/lzsschain.nim +++ b/src/lzss/lzsschain.nim | |||
@@ -15,7 +15,7 @@ | |||
15 | # along with this program. If not, see <https://www.gnu.org/licenses/>. | 15 | # along with this program. If not, see <https://www.gnu.org/licenses/>. |
16 | 16 | ||
17 | import lists, tables, sugar | 17 | import lists, tables, sugar |
18 | import ../integers, ../huffman/huffmantree | 18 | import ../bitio/integers, ../huffman/huffmantree |
19 | import listpolyfill, lzssnode | 19 | import listpolyfill, lzssnode |
20 | 20 | ||
21 | const maxChainByteLength = 32_000 * wordBitLength | 21 | const maxChainByteLength = 32_000 * wordBitLength |