Thomas Faber : shell32/tests: Fix an ok() print.
Module: wine Branch: master Commit: 71f1c90628376dc135d388103434c5d3cff5ea60 URL: http://source.winehq.org/git/wine.git/?a=commit;h=71f1c90628376dc135d3881034... Author: Thomas Faber <thomas.faber(a)reactos.org> Date: Thu Jul 2 06:25:25 2015 -0400 shell32/tests: Fix an ok() print. --- dlls/shell32/tests/shlview.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/shell32/tests/shlview.c b/dlls/shell32/tests/shlview.c index eafaec5..1cfffaa 100644 --- a/dlls/shell32/tests/shlview.c +++ b/dlls/shell32/tests/shlview.c @@ -667,7 +667,7 @@ if (0) hwnd2 = (HWND)0xdeadbeef; hr = IShellView_CreateViewWindow(view, NULL, &settings, &test_shellbrowser, &r, &hwnd2); ok(hr == E_UNEXPECTED, "got (0x%08x)\n", hr); - ok(hwnd2 == NULL, "got %p\n", hwnd_view); + ok(hwnd2 == NULL, "got %p\n", hwnd2); /* ::DragLeave without drag operation */ hr = IShellView_QueryInterface(view, &IID_IDropTarget, (void**)&dt);
participants (1)
-
Alexandre Julliard