I'm not exactly sure what this test is supposed to do, but ET_ProximityOut + 1 works out to ET_DeviceChanged, so just use that instead.
Signed-off-by: Daniel Stone <[email protected]> --- test/input.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/test/input.c b/test/input.c index c389a40..e443f75 100644 --- a/test/input.c +++ b/test/input.c @@ -274,7 +274,7 @@ static void dix_event_to_core_conversion(void) { dix_event_to_core_fail(0, BadImplementation); dix_event_to_core_fail(1, BadImplementation); - dix_event_to_core_fail(ET_ProximityOut + 1, BadImplementation); + dix_event_to_core_fail(ET_DeviceChanged, BadImplementation); dix_event_to_core_fail(ET_ProximityIn, BadMatch); dix_event_to_core_fail(ET_ProximityOut, BadMatch); -- 1.7.2.3 _______________________________________________ [email protected]: X.Org development Archives: http://lists.x.org/archives/xorg-devel Info: http://lists.x.org/mailman/listinfo/xorg-devel
