siphash.h: Fix indentation (#202)

This commit is contained in:
Sebastian Pipping 2018-07-08 19:34:01 +02:00
parent 7981e23331
commit 5994e40650

View File

@ -238,19 +238,19 @@ static uint64_t sip24_final(struct siphash *H) {
switch (left) {
case 7: b |= (uint64_t)H->buf[6] << 48;
/* fall through */
/* fall through */
case 6: b |= (uint64_t)H->buf[5] << 40;
/* fall through */
/* fall through */
case 5: b |= (uint64_t)H->buf[4] << 32;
/* fall through */
/* fall through */
case 4: b |= (uint64_t)H->buf[3] << 24;
/* fall through */
/* fall through */
case 3: b |= (uint64_t)H->buf[2] << 16;
/* fall through */
/* fall through */
case 2: b |= (uint64_t)H->buf[1] << 8;
/* fall through */
/* fall through */
case 1: b |= (uint64_t)H->buf[0] << 0;
/* fall through */
/* fall through */
case 0: break;
}