Module: wine Branch: refs/heads/master Commit: 89846948e301fdf1dcf5f29ae9b7fc9ee5de5fed URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=89846948e301fdf1dcf5f29a... Author: Robert Shearman <rob(a)codeweavers.com> Date: Wed Jan 18 11:29:01 2006 +0100 oleaut: Reduce an ERR down to a WARN since a NULL interface pointer doesn't signify an error; it is just unusual. --- dlls/oleaut32/tmarshal.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/oleaut32/tmarshal.c b/dlls/oleaut32/tmarshal.c index 273a598..e4fafa2 100644 --- a/dlls/oleaut32/tmarshal.c +++ b/dlls/oleaut32/tmarshal.c @@ -167,7 +167,7 @@ _marshal_interface(marshal_state *buf, R * can happen. S_OK to make sure we continue * serializing. */ - ERR("pUnk is NULL?\n"); + WARN("pUnk is NULL\n"); xsize = 0; return xbuf_add(buf,(LPBYTE)&xsize,sizeof(xsize)); }