Merge pull request #2818 from terrelln/indentation-fix

[nit] Fix buggy indentation
This commit is contained in:
Nick Terrell
2021-10-08 14:57:52 -07:00
committed by GitHub
+1 -1
View File
@@ -1985,7 +1985,7 @@ size_t ZSTD_compressBlock_lazy_extDict_generic(
matchLength = ml2, start = ip, offset=offsetFound; matchLength = ml2, start = ip, offset=offsetFound;
} }
if (matchLength < 4) { if (matchLength < 4) {
ip += ((ip-anchor) >> kSearchStrength) + 1; /* jump faster over incompressible sections */ ip += ((ip-anchor) >> kSearchStrength) + 1; /* jump faster over incompressible sections */
continue; continue;
} }