(svn r17169) -Codechange: apply coding style to some for statements

This commit is contained in:
smatz
2009-08-14 17:14:04 +00:00
parent c5533ae470
commit 2d3ddab7ca
4 changed files with 4 additions and 4 deletions

View File

@@ -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;