From bec3db3068cf3482c753c8edf11022bfbca17207 Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Sun, 20 Apr 2014 12:58:03 -0400 Subject: [PATCH] events: Add explicit break This doesn't particularly matter, since we fall through into a default case that does nothing right below, but this matches the other paths and it prevents us from falling into a trap if we add other event types below. --- src/core/events.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core/events.c b/src/core/events.c index 72e6017eb..0b359458c 100644 --- a/src/core/events.c +++ b/src/core/events.c @@ -2146,6 +2146,7 @@ meta_display_handle_event (MetaDisplay *display, bypass_clutter = TRUE; bypass_wayland = TRUE; } + break; default: break;