mirror of
https://github.com/pbatard/rufus.git
synced 2024-08-14 23:57:05 +00:00
Fix build error
This commit is contained in:
parent
8f66a9c1a6
commit
7ff8fb6b06
1 changed files with 1 additions and 1 deletions
|
@ -428,7 +428,7 @@ uint64_t DownloadToFileOrBuffer(const char* url, const char* file, BYTE** buffer
|
||||||
uprintf("Unable to retrieve file length: %s", WinInetErrorString());
|
uprintf("Unable to retrieve file length: %s", WinInetErrorString());
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
total_size = strtoull(strsize);
|
total_size = strtoull(strsize, NULL, 10);
|
||||||
if (hProgressDialog != NULL) {
|
if (hProgressDialog != NULL) {
|
||||||
char msg[128];
|
char msg[128];
|
||||||
uprintf("File length: %s", SizeToHumanReadable(total_size, FALSE, FALSE));
|
uprintf("File length: %s", SizeToHumanReadable(total_size, FALSE, FALSE));
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue