From 2d3ddab7ca440e8ca032efd7d15986a1f7b9129b Mon Sep 17 00:00:00 2001 From: smatz Date: Fri, 14 Aug 2009 17:14:04 +0000 Subject: (svn r17169) -Codechange: apply coding style to some for statements --- src/misc/crc32.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/misc') 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; -- cgit v1.2.3-54-g00ecf