Henri Verbeet : ddraw: Replace an ERR in IDirect3DDeviceImpl_7_QueryInterface() with a WARN.

Alexandre Julliard julliard at winehq.org
Wed Apr 4 13:07:01 CDT 2012


Module: wine
Branch: master
Commit: cd8508a915bd57bfa4a59b76c05a0f0987a4dcd8
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=cd8508a915bd57bfa4a59b76c05a0f0987a4dcd8

Author: Henri Verbeet <hverbeet at codeweavers.com>
Date:   Tue Apr  3 21:15:13 2012 +0200

ddraw: Replace an ERR in IDirect3DDeviceImpl_7_QueryInterface() with a WARN.

---

 dlls/ddraw/device.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/ddraw/device.c b/dlls/ddraw/device.c
index b656ab0..2f4b728 100644
--- a/dlls/ddraw/device.c
+++ b/dlls/ddraw/device.c
@@ -190,7 +190,7 @@ IDirect3DDeviceImpl_7_QueryInterface(IDirect3DDevice7 *iface,
     /* Unknown interface */
     else
     {
-        ERR("(%p)->(%s, %p): No interface found\n", This, debugstr_guid(refiid), obj);
+        WARN("%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid(refiid));
         return E_NOINTERFACE;
     }
 




More information about the wine-cvs mailing list