oleaut: Reduce an ERR down to a WARN since a NULL interface pointer

doesn't signify an error; it is just unusual.
This commit is contained in:
Robert Shearman 2006-01-18 11:29:01 +01:00 committed by Alexandre Julliard
parent 76316796bf
commit 89846948e3
1 changed files with 1 additions and 1 deletions

View File

@ -167,7 +167,7 @@ _marshal_interface(marshal_state *buf, REFIID riid, LPUNKNOWN pUnk) {
* 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));
}