Coding style change

This commit is contained in:
Nils O. Selåsdal
2012-12-05 18:53:58 +01:00
parent d9c8b2b48a
commit 16e1ac52ec
32 changed files with 236 additions and 234 deletions
+2 -2
View File
@@ -18,7 +18,7 @@ uc_murmurmash2(const void *key, int len, uint32_t seed )
const unsigned char * data = (const unsigned char *)key;
while(len >= 4)
while (len >= 4)
{
uint32_t k = *(const uint32_t *)data;
@@ -35,7 +35,7 @@ uc_murmurmash2(const void *key, int len, uint32_t seed )
// Handle the last few bytes of the input array
switch(len)
switch (len)
{
case 3: h ^= data[2] << 16;
case 2: h ^= data[1] << 8;