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 3:
(5 comments)
File src/console/vtxprintf.c:
https://review.coreboot.org/c/coreboot/+/49204/comment/0d4f3c39_ff5eec5d PS3, Line 130: case '-': flags |= LEFT; goto repeat; trailing statements should be on next line
https://review.coreboot.org/c/coreboot/+/49204/comment/afe41c6e_a210f185 PS3, Line 131: case '+': flags |= PLUS; goto repeat; trailing statements should be on next line
https://review.coreboot.org/c/coreboot/+/49204/comment/9515ce4c_bac72b61 PS3, Line 132: case ' ': flags |= SPACE; goto repeat; trailing statements should be on next line
https://review.coreboot.org/c/coreboot/+/49204/comment/e7deee2f_193609f6 PS3, Line 133: case '#': flags |= SPECIAL; goto repeat; trailing statements should be on next line
https://review.coreboot.org/c/coreboot/+/49204/comment/11a43b34_b496e2b5 PS3, Line 134: case '0': flags |= ZEROPAD; goto repeat; trailing statements should be on next line