summaryrefslogtreecommitdiff
path: root/src/misc
diff options
context:
space:
mode:
Diffstat (limited to 'src/misc')
-rw-r--r--src/misc/crc32.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/misc/crc32.hpp b/src/misc/crc32.hpp
index 4843023df..047976713 100644
--- a/src/misc/crc32.hpp
+++ b/src/misc/crc32.hpp
@@ -15,7 +15,7 @@ struct CCrc32
uint8 *begin = (uint8*)pBuffer;
uint8 *end = begin + nCount;
- for(uint8 *cur = begin; cur < end; cur++)
+ for (uint8 *cur = begin; cur < end; cur++)
crc = (crc >> 8) ^ pTable[cur[0] ^ (uint8)(crc & 0xff)];
crc ^= 0xffffffff;