Commit 35efca6a authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

winetest: Fix a cast.

parent 8c7d2599
......@@ -301,7 +301,7 @@ send_file_wininet (const char *name)
report (R_WARNING,
"File too big (%.1f MB > 1.5 MB); submitting partial report.",
filesize/1024.0/1024);
filesize = (DWORD) 1.5*1024*1024;
filesize = 1.5*1024*1024;
}
report (R_STATUS, "Opening HTTP connection to " SERVER_NAME);
......
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