code-style: unindent one level of switch
This commit is contained in:
parent
5a6715c0cf
commit
6c7ff5fda5
10
uudecode.c
10
uudecode.c
|
@ -114,17 +114,17 @@ uudecodeb64(FILE *fp, FILE *outfp)
|
|||
case 1:
|
||||
eprintf("%d: unexpected \"=\""
|
||||
"appeared\n", l);
|
||||
case 2:
|
||||
*po++ = b24[0];
|
||||
b = 0;
|
||||
t = 5; /* expect 5 '=' */
|
||||
continue;
|
||||
case 3:
|
||||
*po++ = b24[0];
|
||||
*po++ = b24[1];
|
||||
b = 0;
|
||||
t = 6; /* expect 6 '=' */
|
||||
continue;
|
||||
case 2:
|
||||
*po++ = b24[0];
|
||||
b = 0;
|
||||
t = 5; /* expect 5 '=' */
|
||||
continue;
|
||||
}
|
||||
} else if ((e = b64dt[(int)*pb]) == -1)
|
||||
eprintf("%d: invalid byte \"%c\"\n", l, *pb);
|
||||
|
|
Loading…
Reference in New Issue
Block a user