code-style: unindent one level of switch

This commit is contained in:
Hiltjo Posthuma 2015-02-20 13:27:57 +01:00
parent 5a6715c0cf
commit 6c7ff5fda5
3 changed files with 76 additions and 76 deletions

View File

@ -114,17 +114,17 @@ uudecodeb64(FILE *fp, FILE *outfp)
case 1: case 1:
eprintf("%d: unexpected \"=\"" eprintf("%d: unexpected \"=\""
"appeared\n", l); "appeared\n", l);
case 2:
*po++ = b24[0];
b = 0;
t = 5; /* expect 5 '=' */
continue;
case 3: case 3:
*po++ = b24[0]; *po++ = b24[0];
*po++ = b24[1]; *po++ = b24[1];
b = 0; b = 0;
t = 6; /* expect 6 '=' */ t = 6; /* expect 6 '=' */
continue; continue;
case 2:
*po++ = b24[0];
b = 0;
t = 5; /* expect 5 '=' */
continue;
} }
} else if ((e = b64dt[(int)*pb]) == -1) } else if ((e = b64dt[(int)*pb]) == -1)
eprintf("%d: invalid byte \"%c\"\n", l, *pb); eprintf("%d: invalid byte \"%c\"\n", l, *pb);