Octavian Voicu : msxml3/tests: Fix a warning in saxreader tests when compiling on x64.
Module: wine Branch: master Commit: 9e3d83e003f89cc3f8666d88e90d94b0e266ed69 URL: http://source.winehq.org/git/wine.git/?a=commit;h=9e3d83e003f89cc3f8666d88e9... Author: Octavian Voicu <octavian.voicu(a)gmail.com> Date: Wed Aug 31 02:20:59 2011 +0300 msxml3/tests: Fix a warning in saxreader tests when compiling on x64. --- dlls/msxml3/tests/saxreader.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/msxml3/tests/saxreader.c b/dlls/msxml3/tests/saxreader.c index b5800d0..8a75211 100644 --- a/dlls/msxml3/tests/saxreader.c +++ b/dlls/msxml3/tests/saxreader.c @@ -1934,7 +1934,7 @@ static void test_mxwriter_stream(void) IMXWriter_Release(writer); ok(current_write_test->last, "The last %d write calls on test %d were missed\n", - current_write_test-test->expected_writes, current_stream_test_index); + (int)(current_write_test-test->expected_writes), current_stream_test_index); } hr = CoCreateInstance(&CLSID_MXXMLWriter, NULL, CLSCTX_INPROC_SERVER,
participants (1)
-
Alexandre Julliard