Module: wine
Branch: master
Commit: 698d1111d6f22ef46fd29b21f57f99fdb484e30f
URL: http://source.winehq.org/git/wine.git/?a=commit;h=698d1111d6f22ef46fd29b21f…
Author: Paul Vriens <paul.vriens.wine(a)gmail.com>
Date: Thu Jun 19 10:52:48 2008 +0200
oleaut32/tests: Remove some stray spaces from the ok message.
---
dlls/oleaut32/tests/safearray.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/oleaut32/tests/safearray.c b/dlls/oleaut32/tests/safearray.c
index 2350eb4..53896ef 100644
--- a/dlls/oleaut32/tests/safearray.c
+++ b/dlls/oleaut32/tests/safearray.c
@@ -492,7 +492,7 @@ static void test_safearray(void)
ok(hres == S_OK, "SAGVT of arra y with vt %d failed with %x\n", vttypes[i].vt, hres);
if (vttypes[i].vt == VT_DISPATCH) {
/* Special case. Checked against Windows. */
- ok(vt == VT_UNKNOWN, "SAGVT of a rray with VT_DISPATCH returned not VT_UNKNOWN, but %d\n", vt);
+ ok(vt == VT_UNKNOWN, "SAGVT of array with VT_DISPATCH returned not VT_UNKNOWN, but %d\n", vt);
} else {
ok(vt == vttypes[i].vt, "SAGVT of array with vt %d returned %d\n", vttypes[i].vt, vt);
}