Module: wine Branch: master Commit: ba7cbccfcb97ec7ddd7bea5f46e4d18d5c86dcd7 URL: http://source.winehq.org/git/wine.git/?a=commit;h=ba7cbccfcb97ec7ddd7bea5f46...
Author: Alexandre Julliard julliard@winehq.org Date: Tue Feb 16 15:50:32 2010 +0100
msvcrt/tests: Avoid size_t in a trace.
---
dlls/msvcrt/tests/file.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/msvcrt/tests/file.c b/dlls/msvcrt/tests/file.c index 5afdfcb..3afc149 100644 --- a/dlls/msvcrt/tests/file.c +++ b/dlls/msvcrt/tests/file.c @@ -893,7 +893,7 @@ static void test_file_write_read( void ) /* test _read in buffered mode. Last CR should be skipped but LF not pulled in */ tempfd = _open(tempf,_O_RDONLY|_O_TEXT); /* open in TEXT mode */ i = _read(tempfd,btext, strlen(mytext)); - ok(i == strlen(mytext)-1, "_read_i %d vs %d\n", i, strlen(mytext)); + ok(i == strlen(mytext)-1, "_read_i %d\n", i); _close(tempfd);
ret =_chmod (tempf, _S_IREAD | _S_IWRITE);