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.
This commit is contained in:
Jasper St. Pierre 2014-04-20 12:58:03 -04:00
parent cef2745bc0
commit bec3db3068

View File

@ -2146,6 +2146,7 @@ meta_display_handle_event (MetaDisplay *display,
bypass_clutter = TRUE;
bypass_wayland = TRUE;
}
break;
default:
break;