uncrustify source code

This commit is contained in:
neingeist 2014-04-19 18:23:49 +02:00
parent ca15f19709
commit 8141a18cab
14 changed files with 1610 additions and 27 deletions

View file

@ -77,7 +77,7 @@ uint32_t Murmur3_32(uint8_t * key, size_t len, uint32_t seed) {
// by the modulo arithmetic under overflow. We don't want that.
remainingbytes = remainingbytes * c1;
remainingbytes =
(remainingbytes << r1) | (remainingbytes >> (32 - r1));
(remainingbytes << r1) | (remainingbytes >> (32 - r1));
remainingbytes = remainingbytes * c2;
hash = hash ^ remainingbytes;