Attention is currently required from: Felix Singer, Angel Pons. build bot (Jenkins) has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/49204 )
Change subject: console/vtxprintf.c: Use same indents for switch/case ......................................................................
Patch Set 5:
(5 comments)
File src/console/vtxprintf.c:
https://review.coreboot.org/c/coreboot/+/49204/comment/e73a2c4c_b55c00b0 PS5, Line 130: case '-': flags |= LEFT; goto repeat; trailing statements should be on next line
https://review.coreboot.org/c/coreboot/+/49204/comment/efb4d050_2eb66774 PS5, Line 131: case '+': flags |= PLUS; goto repeat; trailing statements should be on next line
https://review.coreboot.org/c/coreboot/+/49204/comment/d605bf21_635edabb PS5, Line 132: case ' ': flags |= SPACE; goto repeat; trailing statements should be on next line
https://review.coreboot.org/c/coreboot/+/49204/comment/14440397_b37e87ad PS5, Line 133: case '#': flags |= SPECIAL; goto repeat; trailing statements should be on next line
https://review.coreboot.org/c/coreboot/+/49204/comment/52e57c84_9c8531bb PS5, Line 134: case '0': flags |= ZEROPAD; goto repeat; trailing statements should be on next line