Added missing break statement (Bug 6043)

This commit is contained in:
Markus Roesch 2014-01-01 13:25:31 +01:00 committed by Dana Jansens
parent 7b408bc3b8
commit c7a458b5ad

View file

@ -206,6 +206,7 @@ static Window event_get_window(XEvent *e)
switch (((XkbAnyEvent*)e)->xkb_type) {
case XkbBellNotify:
window = ((XkbBellNotifyEvent*)e)->window;
break;
default:
window = None;
}