minor refactor

This commit is contained in:
Yann Collet 2016-08-20 23:59:45 +02:00
parent a7672dc4f9
commit 9578ff539d

View File

@ -1237,11 +1237,9 @@ FORCE_INLINE int LZ4_decompress_generic(
op = oCopyLimit;
}
while (op<cpy) *op++ = *match++;
}
else {
} else {
LZ4_copy8(op, match);
if (length>16)
LZ4_wildCopy(op+8, match+8, cpy);
if (length>16) LZ4_wildCopy(op+8, match+8, cpy);
}
op=cpy; /* correction */
}