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 8:
(5 comments)
File src/console/vtxprintf.c:
https://review.coreboot.org/c/coreboot/+/49204/comment/24428d9d_cbb9d8dd PS8, Line 130: case '-': flags |= LEFT; goto repeat; trailing statements should be on next line
https://review.coreboot.org/c/coreboot/+/49204/comment/044449f4_80326900 PS8, Line 131: case '+': flags |= PLUS; goto repeat; trailing statements should be on next line
https://review.coreboot.org/c/coreboot/+/49204/comment/42ebc74a_3ac8631b PS8, Line 132: case ' ': flags |= SPACE; goto repeat; trailing statements should be on next line
https://review.coreboot.org/c/coreboot/+/49204/comment/83395054_53e115f3 PS8, Line 133: case '#': flags |= SPECIAL; goto repeat; trailing statements should be on next line
https://review.coreboot.org/c/coreboot/+/49204/comment/7f9771ca_6c42af27 PS8, Line 134: case '0': flags |= ZEROPAD; goto repeat; trailing statements should be on next line