From 171403a3b3db86e2a7f5de4432a9b9462e7f9bc2 Mon Sep 17 00:00:00 2001 From: Kyle Evans Date: Fri, 23 Mar 2018 17:22:28 +0000 Subject: [PATCH] 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 --- stand/i386/libi386/vidconsole.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stand/i386/libi386/vidconsole.c b/stand/i386/libi386/vidconsole.c index 5f18707d8263..0ca24d184663 100644 --- a/stand/i386/libi386/vidconsole.c +++ b/stand/i386/libi386/vidconsole.c @@ -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];