diff options
author | Colin Harrison <colin.harrison@virgin.net> | 2009-10-12 13:50:00 +0100 |
---|---|---|
committer | Jon TURNEY <jon.turney@dronecode.org.uk> | 2010-10-19 14:42:16 +0100 |
commit | 10bf8345cf15c6030147a9edb7f6a093c8db8099 (patch) | |
tree | b9b787626b475579a528a44910e05f67f7eafece /hw/xwin | |
parent | cab837a60a7aa653ccea77ff714335186ce38a4b (diff) |
Xming: Warning fix in winDeviceCursorCleanup()
return statement with an expression in a function whose return-type is void
Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
Reviewed-by: Jon TURNEY <jon.turney@dronecode.org.uk>
Diffstat (limited to 'hw/xwin')
-rw-r--r-- | hw/xwin/wincursor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/xwin/wincursor.c b/hw/xwin/wincursor.c index 7f1935a5d..076d4756c 100644 --- a/hw/xwin/wincursor.c +++ b/hw/xwin/wincursor.c @@ -557,7 +557,7 @@ static void winDeviceCursorCleanup(DeviceIntPtr pDev, ScreenPtr pScr) { winScreenPriv(pScr); - return pScreenPriv->cursor.spriteFuncs->DeviceCursorCleanup(pDev, pScr); + pScreenPriv->cursor.spriteFuncs->DeviceCursorCleanup(pDev, pScr); } static miPointerSpriteFuncRec winSpriteFuncsRec = { |