shell32/tests: Fix an ok() print.

This commit is contained in:
Thomas Faber 2015-07-02 06:25:25 -04:00 committed by Alexandre Julliard
parent 9effcc98f9
commit 71f1c90628
1 changed files with 1 additions and 1 deletions

View File

@ -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);