aboutsummaryrefslogtreecommitdiffstats
path: root/community/aria2/musl-fix-time64.patch
diff options
context:
space:
mode:
Diffstat (limited to 'community/aria2/musl-fix-time64.patch')
-rw-r--r--community/aria2/musl-fix-time64.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/community/aria2/musl-fix-time64.patch b/community/aria2/musl-fix-time64.patch
deleted file mode 100644
index 942fb9b3000..00000000000
--- a/community/aria2/musl-fix-time64.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-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()]);
- }
-