Sync to trunk (r44789)
[reactos.git] / rostests / winetests / ntdll / rtlstr.c
index d9ba0c9..ba7f663 100755 (executable)
@@ -1363,8 +1363,8 @@ static void test_RtlUnicodeStringToInteger(void)
         if (result == STATUS_SUCCESS)
             ok(value == str2int[test_num].value ||
                broken(str2int[test_num].str[0] == '\0' && str2int[test_num].base == 16), /* nt4 */
-               "(test %d): RtlUnicodeStringToInteger(\"%s\", %d, [out]) assigns value %d, expected: %d\n",
-               test_num, str2int[test_num].str, str2int[test_num].base, value, str2int[test_num].value);
+          "(test %d): RtlUnicodeStringToInteger(\"%s\", %d, [out]) assigns value %d, expected: %d\n",
+          test_num, str2int[test_num].str, str2int[test_num].base, value, str2int[test_num].value);
         else
             ok(value == 0xdeadbeef || value == 0 /* vista */,
                "(test %d): RtlUnicodeStringToInteger(\"%s\", %d, [out]) assigns value %d, expected 0 or deadbeef\n",
@@ -1430,9 +1430,9 @@ static void test_RtlCharToInteger(void)
               test_num, str2int[test_num].str, str2int[test_num].base, result,
                str2int[test_num].result, str2int[test_num].alternative);
             if (result == STATUS_SUCCESS)
-                ok(value == str2int[test_num].value,
-                   "(test %d): call failed: RtlCharToInteger(\"%s\", %d, [out]) assigns value %d, expected: %d\n",
-                   test_num, str2int[test_num].str, str2int[test_num].base, value, str2int[test_num].value);
+           ok(value == str2int[test_num].value,
+              "(test %d): call failed: RtlCharToInteger(\"%s\", %d, [out]) assigns value %d, expected: %d\n",
+              test_num, str2int[test_num].str, str2int[test_num].base, value, str2int[test_num].value);
             else
                 ok(value == 0 || value == 0xdeadbeef,
                    "(test %d): call failed: RtlCharToInteger(\"%s\", %d, [out]) assigns value %d, expected 0 or deadbeef\n",