Commit 762c9414 authored by Alexandre Julliard's avatar Alexandre Julliard

msvcrt/tests: Avoid size_t in traces.

parent b0953a09
......@@ -2219,12 +2219,11 @@ static void test__open_osfhandle(void)
CloseHandle(tmp);
}
static void test_write_flush_size(FILE *file, size_t bufsize)
static void test_write_flush_size(FILE *file, int bufsize)
{
char *inbuffer;
char *outbuffer;
size_t size;
int fd;
int size, fd;
fd = fileno(file);
inbuffer = calloc(bufsize + 1, 1);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment