summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2009-06-01 13:21:36 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2009-06-01 13:45:30 +1000
commitde5c5b1db083a9c1d23e1461b54ca646c5a5c445 (patch)
tree308ce1ee1b7b40ed32bb68b68288a9366ff819bc /test
parent0f47203a9a690498c18b1c04e2ef5deed23a0e3e (diff)
test: fix compile error introduced with the removal of isMaster.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'test')
-rw-r--r--test/input.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/input.c b/test/input.c
index cca1291c2..013056f78 100644
--- a/test/input.c
+++ b/test/input.c
@@ -54,7 +54,7 @@ static void dix_init_valuators(void)
memset(&dev, 0, sizeof(DeviceIntRec));
- dev.isMaster = TRUE; /* claim it's a master to stop ptracccel */
+ dev.type = MASTER_POINTER; /* claim it's a master to stop ptracccel */
g_assert(InitValuatorClassDeviceStruct(NULL, 0, 0, 0) == FALSE);
g_assert(InitValuatorClassDeviceStruct(&dev, num_axes, 0, Absolute));