fix formatting

This commit is contained in:
Brenton Bostick 2023-04-16 11:00:23 -04:00
parent e6802690b8
commit 6306db65a1
2 changed files with 9 additions and 6 deletions

View file

@ -543,7 +543,8 @@ FORCE_INLINE int LZ4_compress_generic(
} else {
refDelta = 0;
lowLimit = (const BYTE*)source;
} }
}
}
forwardH = LZ4_hashPosition(forwardIp, tableType);
LZ4_putPositionOnHash(ip, h, cctx->hashTable, tableType, base);
@ -633,7 +634,8 @@ _next_match:
} else {
refDelta = 0;
lowLimit = (const BYTE*)source;
} }
}
}
LZ4_putPosition(ip, cctx->hashTable, tableType, base);
if ( ((dictIssue==dictSmall) ? (match>=lowRefLimit) : 1)
&& (match+MAX_DISTANCE>=ip)
@ -823,7 +825,8 @@ FORCE_INLINE int LZ4_decompress_generic(
} else {
memcpy(op, lowPrefix, restSize);
op += restSize;
} }
}
}
continue;
}