Commit 6b379c8c authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

Convert some ERRs to WARNs in the DDE client code when appropriate.

parent 182cabea
......@@ -198,7 +198,7 @@ HCONV WINAPI DdeConnect(DWORD idInst, HSZ hszService, HSZ hszTopic,
pConv = WDML_GetConvFromWnd(hwndClient);
if (pConv == NULL || pConv->hwndServer == 0)
{
ERR("Done with INITIATE, but no Server window available\n");
WARN("Done with INITIATE, but no Server window available\n");
pConv = NULL;
goto theEnd;
}
......@@ -1118,7 +1118,7 @@ HDDEDATA WINAPI DdeClientTransaction(LPBYTE pData, DWORD cbData, HCONV hConv, HS
if (hConv == 0)
{
ERR("Invalid conversation handle\n");
WARN("Invalid conversation handle NULL\n");
return 0;
}
......@@ -1376,7 +1376,7 @@ BOOL WINAPI DdeDisconnect(HCONV hConv)
if (hConv == 0)
{
ERR("DdeDisconnect(): hConv = 0\n");
WARN("DdeDisconnect(): hConv = 0\n");
return FALSE;
}
......
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