ChangeSet ID: 21221 CVSROOT: /opt/cvs-commit Module name: wine Changes by: julliard@winehq.org 2005/11/11 04:53:44
Modified files: dlls/user : dde_client.c
Log message: Dmitry Timoshkov dmitry@codeweavers.com Convert some ERRs to WARNs in the DDE client code when appropriate.
Patch: http://cvs.winehq.org/patch.py?id=21221
Old revision New revision Changes Path 1.4 1.5 +3 -3 wine/dlls/user/dde_client.c
Index: wine/dlls/user/dde_client.c diff -u -p wine/dlls/user/dde_client.c:1.4 wine/dlls/user/dde_client.c:1.5 --- wine/dlls/user/dde_client.c:1.4 11 Nov 2005 10:53:44 -0000 +++ wine/dlls/user/dde_client.c 11 Nov 2005 10:53:44 -0000 @@ -198,7 +198,7 @@ HCONV WINAPI DdeConnect(DWORD idInst, HS 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(LPB
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; }