summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorYann Collet <cyan@fb.com>2018-04-27 00:02:20 (GMT)
committerYann Collet <cyan@fb.com>2018-04-27 01:08:28 (GMT)
commit0fb3a3b199ed0a92a402c5979c514a329b85462a (patch)
tree80ff4f7a1fd0933bc69d5552f646b628b225a08d /examples
parent5c7d3812d90aeaf072d14f6b5d935711da6f14c7 (diff)
downloadlz4-0fb3a3b199ed0a92a402c5979c514a329b85462a.zip
lz4-0fb3a3b199ed0a92a402c5979c514a329b85462a.tar.gz
lz4-0fb3a3b199ed0a92a402c5979c514a329b85462a.tar.bz2
fixed a number of minor cast warnings
Diffstat (limited to 'examples')
-rw-r--r--examples/frameCompress.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/frameCompress.c b/examples/frameCompress.c
index 972f716..9bfea48 100644
--- a/examples/frameCompress.c
+++ b/examples/frameCompress.c
@@ -21,7 +21,8 @@ static const LZ4F_preferences_t kPrefs = {
0 /* unknown content size */, 0 /* no dictID */ , LZ4F_noBlockChecksum },
0, /* compression level; 0 == default */
0, /* autoflush */
- { 0, 0, 0, 0 }, /* reserved, must be set to 0 */
+ 0, /* favor decompression speed */
+ { 0, 0, 0 }, /* reserved, must be set to 0 */
};