From 28b93d74a11a1064d68a214fcaa7b0aede864a38 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Mon, 3 Dec 2007 14:32:53 +1030 Subject: [PATCH] ephyr: miPointerWarpCursor needs the device parameter. Thanks to Mitchell Quille for spotting it. --- hw/kdrive/ephyr/ephyr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/kdrive/ephyr/ephyr.c b/hw/kdrive/ephyr/ephyr.c index 52f5dcf60..efcca5a33 100644 --- a/hw/kdrive/ephyr/ephyr.c +++ b/hw/kdrive/ephyr/ephyr.c @@ -829,7 +829,7 @@ ephyrWarpCursor (ScreenPtr pScreen, int x, int y) { ephyrBlockSigio (); ephyrCurScreen = pScreen->myNum; - miPointerWarpCursor (pScreen, x, y); + miPointerWarpCursor (inputInfo.pointer, pScreen, x, y); ephyrUnblockSigio (); }