shell32/tests: Fix indentation warnings on GCC 6.

Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Nikolay Sivov 2016-08-09 20:02:20 +03:00 committed by Alexandre Julliard
parent bbb1602442
commit 27f91d71a2
2 changed files with 4 additions and 4 deletions

View File

@ -423,8 +423,8 @@ static void test_GetCurrentProcessExplicitAppUserModelID(void)
return;
}
if (0) /* crashes on native */
hr = pGetCurrentProcessExplicitAppUserModelID(NULL);
if (0) /* crashes on native */
hr = pGetCurrentProcessExplicitAppUserModelID(NULL);
appid = (void*)0xdeadbeef;
hr = pGetCurrentProcessExplicitAppUserModelID(&appid);

View File

@ -728,9 +728,9 @@ todo_wine
hr = IWebBrowser2_get_Document(wb, &doc);
todo_wine
ok(hr == S_OK, "got 0x%08x\n", hr);
if (hr == S_OK)
if (hr == S_OK) {
test_dispatch_typeinfo(doc, viewdual_riids);
}
IWebBrowser2_Release(wb);
/* IServiceProvider */