diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2009-05-06 16:42:46 +1000 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2009-05-08 14:33:23 +1000 |
commit | 409012061b7d361a172b20455d4aaa5e47527c42 (patch) | |
tree | 83539566b2d00db3f9e40d0d35bac046f806ae5e | |
parent | c3c64978c4a231a3a8c18211d0716df875c75efa (diff) |
Xi: add missing break in XI event swapping function
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
-rw-r--r-- | Xi/extinit.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Xi/extinit.c b/Xi/extinit.c index ea778e62f..eb2a90108 100644 --- a/Xi/extinit.c +++ b/Xi/extinit.c @@ -794,6 +794,7 @@ XI2EventSwap(xGenericEvent *from, xGenericEvent *to) case XI_HierarchyChanged: SDeviceHierarchyEvent((xXIDeviceHierarchyEvent*)from, (xXIDeviceHierarchyEvent*)to); + break; default: SDeviceEvent((xXIDeviceEvent*)from, (xXIDeviceEvent*)to); break; |