Michael Stefaniuc : gdi.exe16: Remove an unused return variable ( coccinelle).
Module: wine Branch: master Commit: 7272bd8994ea2cfeecf8a2d2c2bdf10d5e175761 URL: https://source.winehq.org/git/wine.git/?a=commit;h=7272bd8994ea2cfeecf8a2d2c... Author: Michael Stefaniuc <mstefani(a)winehq.org> Date: Tue Feb 26 23:14:57 2019 +0100 gdi.exe16: Remove an unused return variable (coccinelle). Signed-off-by: Michael Stefaniuc <mstefani(a)winehq.org> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/gdi.exe16/printdrv.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dlls/gdi.exe16/printdrv.c b/dlls/gdi.exe16/printdrv.c index bd7f053..2e1ace8 100644 --- a/dlls/gdi.exe16/printdrv.c +++ b/dlls/gdi.exe16/printdrv.c @@ -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; }
participants (1)
-
Alexandre Julliard