minor whitespace cleanup

This commit is contained in:
John Vogel 2013-12-15 16:44:01 -05:00
parent 9b7a2bd096
commit 72f21a85a7
1 changed files with 3 additions and 4 deletions

7
bar.c
View File

@ -134,9 +134,8 @@ draw_char (screen_t *screen, int x, int align, wchar_t ch)
(xcb_char2b_t *)&ch);
/* Draw the underline */
if (BAR_UNDERLINE_HEIGHT) {
if (BAR_UNDERLINE_HEIGHT)
xcb_fill_rect (underl_gc, x + screen->x, BAR_UNDERLINE*(BAR_HEIGHT-BAR_UNDERLINE_HEIGHT), ch_width, BAR_UNDERLINE_HEIGHT);
}
return ch_width;
}
@ -212,8 +211,8 @@ parse (char *text)
align = ALIGN_R;
pos_x = 0;
break;
default:
break;
default:
break;
}
} else { /* utf-8 -> ucs-2 */
wchar_t t;