summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexey Tourbin <alexey.tourbin@gmail.com>2017-04-29 12:00:47 (GMT)
committerAlexey Tourbin <alexey.tourbin@gmail.com>2017-04-29 13:06:45 (GMT)
commitf3460fc148fc828b9c33b1a3967b6e494ad1f8f2 (patch)
treefbfa6d1c0f2136f0a2ec00174c989a69638a5e78
parent37ef330cd8780accf07f872ed465962a56bb8be7 (diff)
downloadlz4-f3460fc148fc828b9c33b1a3967b6e494ad1f8f2.zip
lz4-f3460fc148fc828b9c33b1a3967b6e494ad1f8f2.tar.gz
lz4-f3460fc148fc828b9c33b1a3967b6e494ad1f8f2.tar.bz2
liz4hc.h: fix a comment: LZ4HC_MAX_CLEVEL -> LZ4HC_CLEVEL_MAX
-rw-r--r--lib/lz4hc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/lz4hc.h b/lib/lz4hc.h
index 2e3880d..c4284c0 100644
--- a/lib/lz4hc.h
+++ b/lib/lz4hc.h
@@ -58,8 +58,8 @@ extern "C" {
* `dst` must be already allocated.
* Compression is guaranteed to succeed if `dstCapacity >= LZ4_compressBound(srcSize)` (see "lz4.h")
* Max supported `srcSize` value is LZ4_MAX_INPUT_SIZE (see "lz4.h")
- * `compressionLevel` : Recommended values are between 4 and 9, although any value between 1 and LZ4HC_MAX_CLEVEL will work.
- * Values >LZ4HC_MAX_CLEVEL behave the same as LZ4HC_MAX_CLEVEL.
+ * `compressionLevel` : Recommended values are between 4 and 9, although any value between 1 and LZ4HC_CLEVEL_MAX will work.
+ * Values >LZ4HC_CLEVEL_MAX behave the same as LZ4HC_CLEVEL_MAX.
* @return : the number of bytes written into 'dst'
* or 0 if compression fails.
*/