Commit 96720df5 authored by Ken Thomases's avatar Ken Thomases Committed by Alexandre Julliard

gdi.exe16: Eliminate a couple of dead stores.

parent cdf9c4f2
......@@ -398,7 +398,7 @@ HPJOB16 WINAPI OpenJob16(LPCSTR lpOutput, LPCSTR lpTitle, HDC16 hDC)
INT16 WINAPI CloseJob16(HPJOB16 hJob)
{
int nRet = SP_ERROR;
PPRINTJOB pPrintJob = NULL;
PPRINTJOB pPrintJob;
TRACE("%04x\n", hJob);
......@@ -418,7 +418,7 @@ INT16 WINAPI CloseJob16(HPJOB16 hJob)
INT16 WINAPI WriteSpool16(HPJOB16 hJob, LPSTR lpData, INT16 cch)
{
int nRet = SP_ERROR;
PPRINTJOB pPrintJob = NULL;
PPRINTJOB pPrintJob;
TRACE("%04x %p %04x\n", hJob, lpData, cch);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment