Commit 89846948 authored by Robert Shearman's avatar Robert Shearman Committed by Alexandre Julliard

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

doesn't signify an error; it is just unusual.
parent 76316796
......@@ -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));
}
......
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