nimgrab tool bugfix: don't divide by zero

This commit is contained in:
Araq
2017-05-04 20:03:07 +02:00
parent 202ecdeee8
commit 79b12faf9e

View File

@@ -7,7 +7,11 @@ when defined(windows):
proc progress(status: DownloadStatus, progress: uint, total: uint,
message: string) {.procvar, gcsafe.} =
echo "Downloading " & url
echo clamp(int(progress.BiggestInt*100 div total.BiggestInt), 0, 100), "%"
let t = total.BiggestInt
if t != 0:
echo clamp(int(progress.BiggestInt*100 div t), 0, 100), "%"
else:
echo "0%"
downloadToFile(url, file, {optUseCache}, progress)
echo "100%"