Commit b85c3a0a authored by Pavel Roskin's avatar Pavel Roskin Committed by Alexandre Julliard

Fixed warnings.

parent 137cd8c3
......@@ -69,8 +69,6 @@ static OPENFILENAME ofn;
static HWND findDialogBox = 0;
static UINT findMessageId = 0;
static int findDialogBoxInit = 0;
static int findDialogStructInit = 0;
static FINDREPLACE frS;
static char fromstring[1024], tostring[1024];
......@@ -323,9 +321,9 @@ void mw_PrintSetup(HWND hWnd)
// Escape(tmp.hDC, NEWFRAME, 0, NULL, NULL);
// Escape(tmp.hDC, ENDDOC, 0, NULL, NULL);
// DeleteDC(tmp.hDC);
if (pd.hDevMode != NULL)
if (pd.hDevMode)
GlobalFree(pd.hDevMode);
if (pd.hDevNames != NULL)
if (pd.hDevNames)
GlobalFree(pd.hDevNames);
pd.hDevMode = 0;
......
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