msvcrt/tests: Avoid size_t in printf format.

oldstable
Juan M. Navarro 2009-02-17 12:07:00 -08:00 committed by Alexandre Julliard
parent 2dd1b3b636
commit c9b40bff32
1 changed files with 1 additions and 1 deletions

View File

@ -553,7 +553,7 @@ static void test_fgetwc( void )
ok(l==BUFSIZ-2, "ftell expected %d got %ld\n", BUFSIZ-2, l);
fgetws(wtextW,LLEN,tempfh);
l=ftell(tempfh);
ok(l==BUFSIZ-2+strlen(mytext), "ftell expected %d got %ld\n", BUFSIZ-2+strlen(mytext), l);
ok(l==BUFSIZ-2+strlen(mytext), "ftell expected %d got %ld\n", BUFSIZ-2+lstrlen(mytext), l);
mytextW = AtoW (mytext);
aptr = mytextW;
wptr = wtextW;