[PATCH] dxgi: Fix naming in error traces

Nikolay Sivov nsivov at codeweavers.com
Sat Feb 25 00:10:13 CST 2017


Signed-off-by: Nikolay Sivov <nsivov at codeweavers.com>
---
 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 268b6f08be..9e62e25b01 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();
-- 
2.11.0




More information about the wine-patches mailing list