Fabian Maurer : comsvcs/tests: Avoid "misleading indentation" warnings.

Alexandre Julliard julliard at winehq.org
Wed Jan 26 15:57:29 CST 2022


Module: wine
Branch: master
Commit: 0a13af755087b3aa2fb6954cb0440b23e9f8341a
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=0a13af755087b3aa2fb6954cb0440b23e9f8341a

Author: Fabian Maurer <dark.shadow4 at web.de>
Date:   Tue Jan 25 22:06:26 2022 +0100

comsvcs/tests: Avoid "misleading indentation" warnings.

Signed-off-by: Fabian Maurer <dark.shadow4 at web.de>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/comsvcs/tests/comsvcs.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/dlls/comsvcs/tests/comsvcs.c b/dlls/comsvcs/tests/comsvcs.c
index f0cf0d8543f..2049f555f4a 100644
--- a/dlls/comsvcs/tests/comsvcs.c
+++ b/dlls/comsvcs/tests/comsvcs.c
@@ -453,11 +453,11 @@ static void test_new_moniker(void)
     ok(moniker_type == MKSYS_NONE, "Unexpected moniker type %d.\n", moniker_type);
 
     hr = IMoniker_IsRunning(moniker, NULL, NULL, NULL);
-todo_wine
+    todo_wine
     ok(hr == S_FALSE, "Unexpected hr %#x.\n", hr);
 
     hr = IMoniker_IsRunning(moniker, bindctx, NULL, NULL);
-todo_wine
+    todo_wine
     ok(hr == S_FALSE, "Unexpected hr %#x.\n", hr);
 
     hr = IMoniker_GetTimeOfLastChange(moniker, bindctx, NULL, &filetime);
@@ -468,7 +468,7 @@ todo_wine
     IUnknown_Release(obj);
 
     hr = IMoniker_BindToStorage(moniker, bindctx, NULL, &IID_IUnknown, (void **)&obj);
-todo_wine
+    todo_wine
     ok(hr == MK_E_NOSTORAGE, "Unexpected hr %#x.\n", hr);
 
     hr = IMoniker_Inverse(moniker, &inverse);
@@ -535,7 +535,7 @@ todo_wine
     ok(hr == S_OK, "Failed to get rot, hr %#x.\n", hr);
 
     hr = IRunningObjectTable_GetObject(rot, moniker, &obj2);
-todo_wine
+    todo_wine
     ok(hr == MK_E_UNAVAILABLE, "Unexpected hr %#x.\n", hr);
 
     IRunningObjectTable_Release(rot);




More information about the wine-cvs mailing list