Commit a6230756 authored by Henri Verbeet's avatar Henri Verbeet Committed by Alexandre Julliard

ddraw: Replace a ERR in ddraw_surface7_QueryInterface() with a WARN.

parent f3d1d479
......@@ -232,7 +232,8 @@ static HRESULT WINAPI ddraw_surface7_QueryInterface(IDirectDrawSurface7 *iface,
return S_OK;
}
ERR("No interface\n");
WARN("%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid(riid));
return E_NOINTERFACE;
}
......
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