(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
1 changed files with 1 additions and 1 deletions

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

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