gdi.exe16: Remove an unused return variable (coccinelle).

Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Michael Stefaniuc 2019-02-26 23:14:57 +01:00 committed by Alexandre Julliard
parent 3e8720ae5a
commit 7272bd8994

View file

@ -518,9 +518,8 @@ INT16 WINAPI EndSpoolPage16(HPJOB16 hJob)
*/
DWORD WINAPI GetSpoolJob16(int nOption, LONG param)
{
DWORD retval = 0;
TRACE("In GetSpoolJob param 0x%x noption %d\n",param, nOption);
return retval;
return 0;
}