sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit e43c20134ab48ab36391443860cbdf4ac67d8348
parent 14511da75da11aeef6427aed7fe170076649a957
Author: Peter Rice <peter@peterrice.xyz>
Date:   Tue, 17 Jul 2018 19:00:38 -0400

remove unnecessary parens

Diffstat:
Mswaybar/i3bar.c | 10+++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/swaybar/i3bar.c b/swaybar/i3bar.c @@ -219,15 +219,15 @@ void i3bar_block_send_click(struct status_line *status, enum x11_button wl_button_to_x11_button(uint32_t button) { switch (button) { - case (BTN_LEFT): + case BTN_LEFT: return LEFT; - case (BTN_MIDDLE): + case BTN_MIDDLE: return MIDDLE; - case (BTN_RIGHT): + case BTN_RIGHT: return RIGHT; - case (BTN_SIDE): + case BTN_SIDE: return BACK; - case (BTN_EXTRA): + case BTN_EXTRA: return FORWARD; default: return NONE;