From 69efe0176eedbd9165b6973eae26a4d71017f9ba Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Sat, 19 Aug 2017 17:29:31 +0200 Subject: [PATCH] Prevent accidentally introduced fall-through This was added in commit https://github.com/i3/i3/commit/e82e26a24d22e2f92cd90d9547c213493e94ea63 --- i3bar/src/xcb.c | 1 + 1 file changed, 1 insertion(+) diff --git a/i3bar/src/xcb.c b/i3bar/src/xcb.c index 24f91642..3bd5677a 100644 --- a/i3bar/src/xcb.c +++ b/i3bar/src/xcb.c @@ -1184,6 +1184,7 @@ void xcb_chk_cb(struct ev_loop *loop, ev_check *watcher, int revents) { case XCB_CONFIGURE_REQUEST: /* ConfigureRequest, sent by a tray child */ handle_configure_request((xcb_configure_request_event_t *)event); + break; case XCB_RESIZE_REQUEST: /* ResizeRequest sent by a tray child using override_redirect. */ handle_resize_request((xcb_resize_request_event_t *)event); -- 2.39.2