From ce6b69f5c593a4ee06f8a09517141dbd1ee12621 Mon Sep 17 00:00:00 2001 From: Elliot Gorokhovsky Date: Thu, 28 Apr 2022 14:49:45 -0400 Subject: [PATCH] Final nit --- lib/compress/zstd_fast.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/lib/compress/zstd_fast.c b/lib/compress/zstd_fast.c index c6e9dd33a..959a392a4 100644 --- a/lib/compress/zstd_fast.c +++ b/lib/compress/zstd_fast.c @@ -690,7 +690,9 @@ _start: /* Requires: ip0 */ } } { /* load match for ip[0] */ - U32 const mval = idx >= dictStartIndex ? MEM_read32(idxBase + idx) : MEM_read32(ip0) ^ 1; /* guaranteed not to match */ + U32 const mval = idx >= dictStartIndex ? + MEM_read32(idxBase + idx) : + MEM_read32(ip0) ^ 1; /* guaranteed not to match */ /* check match at ip[0] */ if (MEM_read32(ip0) == mval) { @@ -716,7 +718,9 @@ _start: /* Requires: ip0 */ hashTable[hash0] = current0; { /* load match for ip[0] */ - U32 const mval = idx >= dictStartIndex ? MEM_read32(idxBase + idx) : MEM_read32(ip0) ^ 1; /* guaranteed not to match */ + U32 const mval = idx >= dictStartIndex ? + MEM_read32(idxBase + idx) : + MEM_read32(ip0) ^ 1; /* guaranteed not to match */ /* check match at ip[0] */ if (MEM_read32(ip0) == mval) { -- 2.47.2