mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 12:49:45 +00:00
winetest: Fix a cast.
This commit is contained in:
parent
8c7d259978
commit
35efca6ab3
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user