diff options
author | Blaise Sanouillet <43636048+blezsan@users.noreply.github.com> | 2018-09-28 16:02:36 (GMT) |
---|---|---|
committer | Blaise Sanouillet <43636048+blezsan@users.noreply.github.com> | 2018-09-28 16:02:36 (GMT) |
commit | 718d16ef29315b98236ef5da9496f0477c152f5d (patch) | |
tree | 2d461f06dee05aa4f9ab4111718935474db14d78 /programs | |
parent | 64ad395d27ad4f935cbcf9a5ed21699fbf1ce89c (diff) | |
download | lz4-718d16ef29315b98236ef5da9496f0477c152f5d.zip lz4-718d16ef29315b98236ef5da9496f0477c152f5d.tar.gz lz4-718d16ef29315b98236ef5da9496f0477c152f5d.tar.bz2 |
support custom block sizes - fix types
Diffstat (limited to 'programs')
-rw-r--r-- | programs/lz4io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/programs/lz4io.c b/programs/lz4io.c index 17ff9a1..bec3ae4 100644 --- a/programs/lz4io.c +++ b/programs/lz4io.c @@ -110,7 +110,7 @@ static clock_t g_time = 0; static int g_overwrite = 1; static int g_testMode = 0; static int g_blockSizeId = LZ4IO_BLOCKSIZEID_DEFAULT; -static int g_blockSize = 0; +static size_t g_blockSize = 0; static int g_blockChecksum = 0; static int g_streamChecksum = 1; static int g_blockIndependence = 1; |