Match broken style of vidconsole.c

This particular function uses a broken mix of indentation styles. Match it
for the newly added SGR 22 bits.

Reported by:	jkim
X-MFC-With:	r331416
This commit is contained in:
Kyle Evans 2018-03-23 17:22:28 +00:00
parent c0aa0e2c27
commit 171403a3b3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=331440

View File

@ -449,9 +449,9 @@ vidc_term_emu(int c)
fg_c = bg_c;
bg_c = t;
break;
case 22: /* normal intensity */
fg_c &= ~0x8;
break;
case 22: /* normal intensity */
fg_c &= ~0x8;
break;
case 30: case 31: case 32: case 33:
case 34: case 35: case 36: case 37:
fg_c = ansi_col[args[i] - 30];