From 4737da10a1a47278640792fb62106c06c4e023a4 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Tue, 4 Jul 2000 19:06:26 +0000 Subject: [PATCH] whops. broke it accidentally. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@427 dbcabf3a-b0e7-0310-adc4-f8d773084564 --- src/fe-text/statusbar-items.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/fe-text/statusbar-items.c b/src/fe-text/statusbar-items.c index 476665d2..d92683dc 100644 --- a/src/fe-text/statusbar-items.c +++ b/src/fe-text/statusbar-items.c @@ -164,8 +164,10 @@ static void statusbar_nick(SBAR_ITEM_REC *item, int ypos) move(ypos, item->xpos); set_color((1 << 4)+3); addch('['); - if (nickrec != NULL && (nickrec->op || nickrec->voice)) - set_color((1 << 4)+15); addch(nickrec->op ? '@' : '+'); + if (nickrec != NULL && (nickrec->op || nickrec->voice)) { + set_color((1 << 4)+15); + addch(nickrec->op ? '@' : '+'); + } set_color((1 << 4)+7); addstr(nick); if (umode_size) { set_color((1 << 4)+15); addch('(');