From bf9b64eefbadbf299d3b841c1890bfcaef5aab1b Mon Sep 17 00:00:00 2001 From: Jamey Sharp Date: Mon, 24 May 2010 09:14:27 -0700 Subject: xnest: Don't ignore errors from DeviceCursorInitialize. Signed-off-by: Jamey Sharp Reviewed-by: Dan Nicholson --- hw/xnest/Cursor.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'hw/xnest') diff --git a/hw/xnest/Cursor.c b/hw/xnest/Cursor.c index 9ae210228..5491ee97b 100644 --- a/hw/xnest/Cursor.c +++ b/hw/xnest/Cursor.c @@ -167,8 +167,7 @@ xnestDeviceCursorInitialize(DeviceIntPtr pDev, ScreenPtr pScreen) pScreenPriv = (xnestCursorFuncPtr) dixLookupPrivate(&pScreen->devPrivates, xnestCursorScreenKey); - pScreenPriv->spriteFuncs->DeviceCursorInitialize(pDev, pScreen); - return TRUE; + return pScreenPriv->spriteFuncs->DeviceCursorInitialize(pDev, pScreen); } void -- cgit v1.2.3