From: Gerald Pfeifer Subject: shell32: Avoid -Wmisleading-indentation warning in test_GetCurrentProcessExplicitAppUserModelID. Message-Id: Date: Tue, 12 Jan 2016 09:54:12 +0800 (WITA) When glancing at this, at first I actually got mislead, so being explicit really makes sense beyond just avoiding the warning. Signed-off-by: Gerald Pfeifer --- dlls/shell32/tests/appbar.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dlls/shell32/tests/appbar.c b/dlls/shell32/tests/appbar.c index 8138131..1df6d80 100644 --- a/dlls/shell32/tests/appbar.c +++ b/dlls/shell32/tests/appbar.c @@ -442,8 +442,9 @@ static void test_GetCurrentProcessExplicitAppUserModelID(void) return; } -if (0) /* crashes on native */ +if (0) /* crashes on native */ { hr = pGetCurrentProcessExplicitAppUserModelID(NULL); +} appid = (void*)0xdeadbeef; hr = pGetCurrentProcessExplicitAppUserModelID(&appid); -- 2.6.4