summaryrefslogtreecommitdiffstats
path: root/lib/lz4frame.c
diff options
context:
space:
mode:
authorYann Collet <cyan@fb.com>2022-09-20 19:49:51 (GMT)
committerYann Collet <cyan@fb.com>2022-09-20 19:49:51 (GMT)
commitb21490232df113efc5fee7251edfc0511a346143 (patch)
treeb825da40ac6ebf5be99fb0454a23152d7cf18b79 /lib/lz4frame.c
parentf39c0810bc5b8081bd61e2abf31500f03dc56a95 (diff)
downloadlz4-b21490232df113efc5fee7251edfc0511a346143.zip
lz4-b21490232df113efc5fee7251edfc0511a346143.tar.gz
lz4-b21490232df113efc5fee7251edfc0511a346143.tar.bz2
added notes about LZ4_compressFrame() and stack/heap memory usage
Diffstat (limited to 'lib/lz4frame.c')
-rw-r--r--lib/lz4frame.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lz4frame.c b/lib/lz4frame.c
index 4d991e1..d1cc5f0 100644
--- a/lib/lz4frame.c
+++ b/lib/lz4frame.c
@@ -54,7 +54,7 @@
**************************************/
/*
* LZ4F_HEAPMODE :
- * Select how LZ4F_compressFrame will allocate the Compression Context,
+ * Control how LZ4F_compressFrame allocates the Compression State,
* either on stack (0:default, fastest), or in memory heap (1:requires malloc()).
*/
#ifndef LZ4F_HEAPMODE