1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-22 02:35:23 +03:00
aports/community/aria2/musl-fix-time64.patch
2020-08-07 13:56:06 +00:00

19 lines
888 B
Diff

upstream issue: https://github.com/aria2/aria2/issues/1666
diff --git a/src/ServerStat.cc b/src/ServerStat.cc
index d35407d..728a9e6 100644
--- a/src/ServerStat.cc
+++ b/src/ServerStat.cc
@@ -183,10 +183,10 @@ bool ServerStat::operator==(const ServerStat& serverStat) const
std::string ServerStat::toString() const
{
return fmt("host=%s, protocol=%s, dl_speed=%d, sc_avg_speed=%d,"
- " mc_avg_speed=%d, last_updated=%ld, counter=%d, status=%s",
+ " mc_avg_speed=%d, last_updated=%" PRId64 ", counter=%d, status=%s",
getHostname().c_str(), getProtocol().c_str(), getDownloadSpeed(),
getSingleConnectionAvgSpeed(), getMultiConnectionAvgSpeed(),
- getLastUpdated().getTimeFromEpoch(), getCounter(),
+ (int64_t)getLastUpdated().getTimeFromEpoch(), getCounter(),
STATUS_STRING[getStatus()]);
}