summaryrefslogtreecommitdiffstats
path: root/lz4.h
diff options
context:
space:
mode:
authoryann.collet.73@gmail.com <yann.collet.73@gmail.com@650e7d94-2a16-8b24-b05c-7c0b3f6821cd>2012-08-03 14:33:12 (GMT)
committeryann.collet.73@gmail.com <yann.collet.73@gmail.com@650e7d94-2a16-8b24-b05c-7c0b3f6821cd>2012-08-03 14:33:12 (GMT)
commit19a078b132f515405ab0b297c3cb2673dd2870de (patch)
treed362601cf7a59f0377baae0765b10f64773c177d /lz4.h
parent89921dd39eaa4910eda636f68d3cb5f960b616ac (diff)
downloadlz4-19a078b132f515405ab0b297c3cb2673dd2870de.zip
lz4-19a078b132f515405ab0b297c3cb2673dd2870de.tar.gz
lz4-19a078b132f515405ab0b297c3cb2673dd2870de.tar.bz2
Improved speed under Visual
git-svn-id: https://lz4.googlecode.com/svn/trunk@73 650e7d94-2a16-8b24-b05c-7c0b3f6821cd
Diffstat (limited to 'lz4.h')
-rw-r--r--lz4.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lz4.h b/lz4.h
index 498421d..e3df7bd 100644
--- a/lz4.h
+++ b/lz4.h
@@ -49,7 +49,7 @@ int LZ4_uncompress (const char* source, char* dest, int osize);
LZ4_compress() :
Compresses 'isize' bytes from 'source' into 'dest'.
Destination buffer must be already allocated,
- its minimum size must handle worst cases situations (input data not compressible)
+ and must be sized to handle worst cases situations (input data not compressible)
Worst case size evaluation is provided by macro LZ4_compressBound()
isize : is the input size. Max supported value is ~1.9GB