]> granicus.if.org Git - libexpat/commitdiff
siphash.h: Fix indentation (#202)
authorSebastian Pipping <sebastian@pipping.org>
Sun, 8 Jul 2018 17:34:01 +0000 (19:34 +0200)
committerSebastian Pipping <sebastian@pipping.org>
Sun, 8 Jul 2018 17:36:30 +0000 (19:36 +0200)
expat/lib/siphash.h

index e9d33763562ef8bfb4c1cf5ec3fd1d54a3e11d53..1e8691010c5068aaf554cb849e843b1f87ddc201 100644 (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;
        }