remove unnecessary parens

This commit is contained in:
Peter Rice 2018-07-17 19:00:38 -04:00
parent 14511da75d
commit e43c20134a
1 changed files with 5 additions and 5 deletions

View File

@ -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;