summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorPo-Chuan Hsieh <sunpoet@sunpoet.net>2018-01-17 19:13:05 (GMT)
committerPo-Chuan Hsieh <sunpoet@sunpoet.net>2018-01-17 19:13:05 (GMT)
commit75b81bbbf09f7d76f0e439ff29d12d922e74c0bb (patch)
tree1bdb38153f9fd6ddcdce6db3bd47f7e5005895ad /lib
parentb077a99347a384225d03f5458c2b57bedb134c62 (diff)
downloadlz4-75b81bbbf09f7d76f0e439ff29d12d922e74c0bb.zip
lz4-75b81bbbf09f7d76f0e439ff29d12d922e74c0bb.tar.gz
lz4-75b81bbbf09f7d76f0e439ff29d12d922e74c0bb.tar.bz2
Change file format back to ASCII (from UTF-8)
- Replace U+00A0 by space - Fix build failure of archivers/py-borgbackup in FreeBSD Reference: https://bugs.FreeBSD.org/225235
Diffstat (limited to 'lib')
-rw-r--r--lib/lz4.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/lz4.h b/lib/lz4.h
index a06b8a4..7710b11 100644
--- a/lib/lz4.h
+++ b/lib/lz4.h
@@ -264,8 +264,8 @@ LZ4LIB_API int LZ4_loadDict (LZ4_stream_t* streamPtr, const char* dictionary, in
* If dstCapacity >= LZ4_compressBound(srcSize), compression is guaranteed to succeed, and runs faster.
*
* Important : Up to 64KB of previously compressed data is assumed to remain present and unmodified in memory !
- * Special 1 : If input buffer is a double-buffer, it can have any size, including < 64 KB.
- * Special 2 : If input buffer is a ring-buffer, it can have any size, including < 64 KB.
+ * Special 1 : If input buffer is a double-buffer, it can have any size, including < 64 KB.
+ * Special 2 : If input buffer is a ring-buffer, it can have any size, including < 64 KB.
*
* @return : size of compressed block
* or 0 if there is an error (typically, compressed data cannot fit into 'dst')