File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -690,7 +690,9 @@ static size_t ZSTD_compressBlock_fast_extDict_generic(
690
690
} }
691
691
692
692
{ /* 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 */
694
696
695
697
/* check match at ip[0] */
696
698
if (MEM_read32 (ip0 ) == mval ) {
@@ -716,7 +718,9 @@ static size_t ZSTD_compressBlock_fast_extDict_generic(
716
718
hashTable [hash0 ] = current0 ;
717
719
718
720
{ /* 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 */
720
724
721
725
/* check match at ip[0] */
722
726
if (MEM_read32 (ip0 ) == mval ) {
You can’t perform that action at this time.
0 commit comments