kernel32: Fix test output

André Hentschel nerv at dawncrow.de
Mon Jun 21 13:39:18 CDT 2010


---
 dlls/kernel32/tests/thread.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/kernel32/tests/thread.c b/dlls/kernel32/tests/thread.c
index 1d3931f..1de5410 100644
--- a/dlls/kernel32/tests/thread.c
+++ b/dlls/kernel32/tests/thread.c
@@ -1391,7 +1391,7 @@ static void test_thread_fpu_cw(void)
 
     initial_cw = get_fpu_cw();
     expect = sizeof(void *) > sizeof(int) ? 0x27f : 0x37f;
-    ok(initial_cw == expect, "Expected FPU control word expect, got %#x.\n", initial_cw);
+    ok(initial_cw == expect, "Expected FPU control word %#x, got %#x.\n", expect, initial_cw);
 
     cw = get_thread_fpu_cw();
     ok(cw == 0x27f, "Expected FPU control word 0x27f, got %#x.\n", cw);
-- 

Best Regards, André Hentschel



More information about the wine-patches mailing list