Module: wine Branch: master Commit: 2654f9c456e9a25ca3dad6d292457c125d9d3c7c URL: https://gitlab.winehq.org/wine/wine/-/commit/2654f9c456e9a25ca3dad6d292457c1...
Author: Stefan Dösinger stefan@codeweavers.com Date: Sun Jan 8 20:19:43 2023 +0300
dxgi/tests: Fix UnregisterClass call in test_resize_target_wndproc.
---
dlls/dxgi/tests/dxgi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/dxgi/tests/dxgi.c b/dlls/dxgi/tests/dxgi.c index 4703bd8ee27..fb506d6ccb0 100644 --- a/dlls/dxgi/tests/dxgi.c +++ b/dlls/dxgi/tests/dxgi.c @@ -3418,7 +3418,7 @@ static DWORD WINAPI window_thread(void *data) DestroyWindow(thread_data->window); thread_data->window = NULL;
- UnregisterClassA("dxgi_test_wndproc_wc", GetModuleHandleA(NULL)); + UnregisterClassA("dxgi_resize_target_wndproc_wc", GetModuleHandleA(NULL));
return 0; }