summaryrefslogtreecommitdiffstats
path: root/lib/lz4hc.c
diff options
context:
space:
mode:
authorYann Collet <cyan@fb.com>2017-11-09 01:11:51 (GMT)
committerYann Collet <cyan@fb.com>2017-11-09 01:11:51 (GMT)
commitf93b59571893f4ebf332c5d05e03b56f1359f46c (patch)
treef97c2d51daa1e3ab8d85a47b060a61eff30a8561 /lib/lz4hc.c
parentfa03a9d3d983c0bc4a6ea843493d85d434188090 (diff)
downloadlz4-f93b59571893f4ebf332c5d05e03b56f1359f46c.zip
lz4-f93b59571893f4ebf332c5d05e03b56f1359f46c.tar.gz
lz4-f93b59571893f4ebf332c5d05e03b56f1359f46c.tar.bz2
lz4opt: simplified match finder invocation to LZ4HC_FindLongerMatch()
Diffstat (limited to 'lib/lz4hc.c')
-rw-r--r--lib/lz4hc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lz4hc.c b/lib/lz4hc.c
index b8d8a78..60690a0 100644
--- a/lib/lz4hc.c
+++ b/lib/lz4hc.c
@@ -304,7 +304,7 @@ int LZ4HC_InsertAndFindBestMatch(LZ4HC_CCtx_internal* const hc4, /* Index tabl
const BYTE* uselessPtr = ip;
/* note : LZ4HC_InsertAndGetWiderMatch() is able to modify the starting position of a match (*startpos),
* but this won't be the case here, as we define iLowLimit==ip,
- * so LZ4HC_InsertAndGetWiderMatch() will not be allowed to search past ip */
+ * so LZ4HC_InsertAndGetWiderMatch() won't be allowed to search past ip */
return LZ4HC_InsertAndGetWiderMatch(hc4, ip, ip, iLimit, MINMATCH-1, matchpos, &uselessPtr, maxNbAttempts);
}