summaryrefslogtreecommitdiff
path: root/src/cmdline/cmdline_changelog.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmdline/cmdline_changelog.cc')
-rw-r--r--src/cmdline/cmdline_changelog.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/cmdline/cmdline_changelog.cc b/src/cmdline/cmdline_changelog.cc
index 3dd70362..a2ea9e92 100644
--- a/src/cmdline/cmdline_changelog.cc
+++ b/src/cmdline/cmdline_changelog.cc
@@ -88,8 +88,8 @@ void set_name(temp::name n, temp::name *target)
}
void partial_download(const temp::name &name,
- unsigned long currentSize,
- unsigned long totalSize)
+ unsigned long long currentSize,
+ unsigned long long totalSize)
{
// Hack: ripped this code from AcqTextStatus.
@@ -98,8 +98,8 @@ void set_name(temp::name n, temp::name *target)
const int screen_width = term_metrics->get_screen_width();
- unsigned long TotalBytes = totalSize;
- unsigned long CurrentBytes = currentSize;
+ unsigned long long TotalBytes = totalSize;
+ unsigned long long CurrentBytes = currentSize;
std::ostringstream bufferStream;