Nikolay Sivov : dxgi: Fix naming in error traces.

Alexandre Julliard julliard at winehq.org
Mon Feb 27 15:12:07 CST 2017


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

Author: Nikolay Sivov <nsivov at codeweavers.com>
Date:   Sat Feb 25 09:10:13 2017 +0300

dxgi: Fix naming in error traces.

Signed-off-by: Nikolay Sivov <nsivov at codeweavers.com>
Signed-off-by: Henri Verbeet <hverbeet at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/dxgi/device.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/dxgi/device.c b/dlls/dxgi/device.c
index 268b6f0..9e62e25 100644
--- a/dlls/dxgi/device.c
+++ b/dlls/dxgi/device.c
@@ -175,7 +175,7 @@ static HRESULT STDMETHODCALLTYPE dxgi_device_CreateSurface(IWineDXGIDevice *ifac
     hr = IWineDXGIDevice_QueryInterface(iface, &IID_IWineDXGIDeviceParent, (void **)&dxgi_device_parent);
     if (FAILED(hr))
     {
-        ERR("Device should implement IWineD3DDeviceParent\n");
+        ERR("Device should implement IWineDXGIDeviceParent\n");
         return E_FAIL;
     }
 
@@ -405,7 +405,7 @@ HRESULT dxgi_device_init(struct dxgi_device *device, struct dxgi_device_layer *l
     if (FAILED(hr = IWineDXGIDevice_QueryInterface(&device->IWineDXGIDevice_iface,
             &IID_IWineDXGIDeviceParent, (void **)&dxgi_device_parent)))
     {
-        ERR("DXGI device should implement IWineD3DDeviceParent.\n");
+        ERR("DXGI device should implement IWineDXGIDeviceParent.\n");
         IUnknown_Release(device->child_layer);
         wined3d_private_store_cleanup(&device->private_store);
         wined3d_mutex_unlock();




More information about the wine-cvs mailing list