(7zip/Bcj2.c) Fix one pedantic warning - shadowed variable

This commit is contained in:
Twinaphex 2014-10-21 17:59:37 +02:00
parent 6f3c7cba8a
commit fcff7bffee

2
deps/7zip/Bcj2.c vendored
View File

@ -61,7 +61,7 @@ int Bcj2_Decode(
limit = outSize - outPos;
while (limit != 0)
{
uint8_t b = buf0[inPos];
b = buf0[inPos];
outBuf[outPos++] = b;
if (IsJ(prevuint8_t, b))
break;