Module: wine Branch: master Commit: 6d1db050d28bcb149d16d5186d33fd20492347fa URL: http://source.winehq.org/git/wine.git/?a=commit;h=6d1db050d28bcb149d16d5186d...
Author: Alistair Leslie-Hughes leslie_alistair@hotmail.com Date: Mon Jun 3 08:51:07 2013 +1000
oleaut32/tests: Correct output arguments.
---
dlls/oleaut32/tests/vartest.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/oleaut32/tests/vartest.c b/dlls/oleaut32/tests/vartest.c index c7b46db..0d38b9d 100644 --- a/dlls/oleaut32/tests/vartest.c +++ b/dlls/oleaut32/tests/vartest.c @@ -5510,7 +5510,7 @@ static void test_VarCat(void) /* Determine the error code for the vt combination */ ok(hres == expected_error_num, "VarCat: %d, %d returned error, 0x%X expected 0x%X.\n", - leftvt, rightvt, expected_error_num, hres); + leftvt, rightvt, hres, expected_error_num);
/* Check types are correct */ ok(V_VT(&result) == resultvt,