build bot (Jenkins) has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/49204 )
Change subject: console/*: Use same indents for switch/case ......................................................................
Patch Set 1:
(5 comments)
https://review.coreboot.org/c/coreboot/+/49204/1/src/console/vtxprintf.c File src/console/vtxprintf.c:
https://review.coreboot.org/c/coreboot/+/49204/1/src/console/vtxprintf.c@130 PS1, Line 130: case '-': flags |= LEFT; goto repeat; trailing statements should be on next line
https://review.coreboot.org/c/coreboot/+/49204/1/src/console/vtxprintf.c@131 PS1, Line 131: case '+': flags |= PLUS; goto repeat; trailing statements should be on next line
https://review.coreboot.org/c/coreboot/+/49204/1/src/console/vtxprintf.c@132 PS1, Line 132: case ' ': flags |= SPACE; goto repeat; trailing statements should be on next line
https://review.coreboot.org/c/coreboot/+/49204/1/src/console/vtxprintf.c@133 PS1, Line 133: case '#': flags |= SPECIAL; goto repeat; trailing statements should be on next line
https://review.coreboot.org/c/coreboot/+/49204/1/src/console/vtxprintf.c@134 PS1, Line 134: case '0': flags |= ZEROPAD; goto repeat; trailing statements should be on next line