Skip to content

Commit ce6b69f

Browse files
committed
Final nit
1 parent 6a2e1f7 commit ce6b69f

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

lib/compress/zstd_fast.c

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -690,7 +690,9 @@ static size_t ZSTD_compressBlock_fast_extDict_generic(
690690
} }
691691

692692
{ /* load match for ip[0] */
693-
U32 const mval = idx >= dictStartIndex ? MEM_read32(idxBase + idx) : MEM_read32(ip0) ^ 1; /* guaranteed not to match */
693+
U32 const mval = idx >= dictStartIndex ?
694+
MEM_read32(idxBase + idx) :
695+
MEM_read32(ip0) ^ 1; /* guaranteed not to match */
694696

695697
/* check match at ip[0] */
696698
if (MEM_read32(ip0) == mval) {
@@ -716,7 +718,9 @@ static size_t ZSTD_compressBlock_fast_extDict_generic(
716718
hashTable[hash0] = current0;
717719

718720
{ /* load match for ip[0] */
719-
U32 const mval = idx >= dictStartIndex ? MEM_read32(idxBase + idx) : MEM_read32(ip0) ^ 1; /* guaranteed not to match */
721+
U32 const mval = idx >= dictStartIndex ?
722+
MEM_read32(idxBase + idx) :
723+
MEM_read32(ip0) ^ 1; /* guaranteed not to match */
720724

721725
/* check match at ip[0] */
722726
if (MEM_read32(ip0) == mval) {

0 commit comments

Comments
 (0)