Skip to content

Commit 7a1045c

Browse files
committed
Remove redundant check
1 parent 0cb0f21 commit 7a1045c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/transform/RLT.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ bool RLT::forward(SliceArray<byte>& input, SliceArray<byte>& output, int count)
127127
if ((run < MAX_RUN4) && (srcIdx < srcEnd4))
128128
continue;
129129
}
130-
else if (prev == src[srcIdx]) {
130+
else {
131131
srcIdx++; run++;
132132

133133
if (prev == src[srcIdx]) {

0 commit comments

Comments
 (0)