mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-01-03 11:40:15 +01:00
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>
This commit is contained in:
parent
cab837a60a
commit
10bf8345cf
1 changed files with 1 additions and 1 deletions
|
|
@ -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 = {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue