summaryrefslogtreecommitdiff
path: root/util/cbfstool/lzma/C/Common/CRC.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'util/cbfstool/lzma/C/Common/CRC.cpp')
-rw-r--r--util/cbfstool/lzma/C/Common/CRC.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/cbfstool/lzma/C/Common/CRC.cpp b/util/cbfstool/lzma/C/Common/CRC.cpp
index 35e1a18751..de5d561def 100644
--- a/util/cbfstool/lzma/C/Common/CRC.cpp
+++ b/util/cbfstool/lzma/C/Common/CRC.cpp
@@ -14,9 +14,9 @@ void CCRC::InitTable()
{
UInt32 r = i;
for (int j = 0; j < 8; j++)
- if (r & 1)
+ if (r & 1)
r = (r >> 1) ^ kCRCPoly;
- else
+ else
r >>= 1;
CCRC::Table[i] = r;
}