mirror of
https://github.com/aria2/aria2.git
synced 2025-04-03 04:27:38 +03:00
Fix compiler warning with Android NDK clang
This commit is contained in:
parent
13b2c4a0f9
commit
857d6a2a8e
3 changed files with 5 additions and 3 deletions
|
@ -97,7 +97,8 @@ ssize_t AbstractSingleDiskAdaptor::readDataDropCache(unsigned char* data,
|
|||
void AbstractSingleDiskAdaptor::writeCache(const WrDiskCacheEntry* entry)
|
||||
{
|
||||
for (auto& d : entry->getDataSet()) {
|
||||
A2_LOG_DEBUG(fmt("Cache flush goff=%" PRId64 ", len=%lu", d->goff, d->len));
|
||||
A2_LOG_DEBUG(fmt("Cache flush goff=%" PRId64 ", len=%lu", d->goff,
|
||||
static_cast<unsigned long>(d->len)));
|
||||
writeData(d->data + d->offset, d->len, d->goff);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -413,7 +413,8 @@ ssize_t MultiDiskAdaptor::readData(unsigned char* data, size_t len,
|
|||
void MultiDiskAdaptor::writeCache(const WrDiskCacheEntry* entry)
|
||||
{
|
||||
for (auto& d : entry->getDataSet()) {
|
||||
A2_LOG_DEBUG(fmt("Cache flush goff=%" PRId64 ", len=%lu", d->goff, d->len));
|
||||
A2_LOG_DEBUG(fmt("Cache flush goff=%" PRId64 ", len=%lu", d->goff,
|
||||
static_cast<unsigned long>(d->len)));
|
||||
writeData(d->data + d->offset, d->len, d->goff);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1106,7 +1106,7 @@ int RequestGroupMan::optimizeConcurrentDownloads()
|
|||
A2_LOG_DEBUG(
|
||||
fmt("Max concurrent downloads optimized at %d (%lu currently active) "
|
||||
"[optimization speed %sB/s, current speed %sB/s]",
|
||||
maxConcurrentDownloads, numActive_,
|
||||
maxConcurrentDownloads, static_cast<unsigned long>(numActive_),
|
||||
util::abbrevSize(optimizationSpeed_).c_str(),
|
||||
util::abbrevSize(currentSpeed).c_str()));
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue