Additional code formatting tweaks

... detected with an improved version of our checkstyle script
This commit is contained in:
DRC
2018-05-21 12:07:40 -05:00
parent eb8bba627f
commit 1a85fc497d

View File

@@ -58,7 +58,7 @@ static void byteReverse(unsigned char *buf, unsigned int longs)
do {
t = (uint32)((unsigned int)buf[3] << 8 | buf[2]) << 16 |
((unsigned int)buf[1] << 8 | buf[0]);
*(uint32 *) buf = t;
*(uint32 *)buf = t;
buf += 4;
} while (--longs);
}