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 4:
(5 comments)
File src/console/vtxprintf.c:
https://review.coreboot.org/c/coreboot/+/49204/comment/30186d80_c3e55fa0 PS4, Line 130: case '-': flags |= LEFT; goto repeat; trailing statements should be on next line
https://review.coreboot.org/c/coreboot/+/49204/comment/11cbab5d_8de488e7 PS4, Line 131: case '+': flags |= PLUS; goto repeat; trailing statements should be on next line
https://review.coreboot.org/c/coreboot/+/49204/comment/e4b7a8cb_99733dfe PS4, Line 132: case ' ': flags |= SPACE; goto repeat; trailing statements should be on next line
https://review.coreboot.org/c/coreboot/+/49204/comment/0ab40a0d_28e06767 PS4, Line 133: case '#': flags |= SPECIAL; goto repeat; trailing statements should be on next line
https://review.coreboot.org/c/coreboot/+/49204/comment/9f6b6bc9_94e7eff0 PS4, Line 134: case '0': flags |= ZEROPAD; goto repeat; trailing statements should be on next line