From de5c5b1db083a9c1d23e1461b54ca646c5a5c445 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Mon, 1 Jun 2009 13:21:36 +1000 Subject: [PATCH] test: fix compile error introduced with the removal of isMaster. Signed-off-by: Peter Hutterer --- test/input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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));