mirror of
https://github.com/aria2/aria2.git
synced 2025-04-04 21:17:41 +03:00
clang-format-3.9
This commit is contained in:
parent
a7fcf83bdf
commit
aa4ea8889c
51 changed files with 332 additions and 271 deletions
|
@ -111,8 +111,9 @@ int main(int argc, char** argv)
|
|||
// the application can call aria2 API to add URI or query progress
|
||||
// here
|
||||
auto now = std::chrono::steady_clock::now();
|
||||
auto count = std::chrono::duration_cast<std::chrono::milliseconds>(
|
||||
now - start).count();
|
||||
auto count =
|
||||
std::chrono::duration_cast<std::chrono::milliseconds>(now - start)
|
||||
.count();
|
||||
// Print progress information once per 500ms
|
||||
if (count >= 500) {
|
||||
start = now;
|
||||
|
@ -130,7 +131,8 @@ int main(int argc, char** argv)
|
|||
<< "(" << (dh->getTotalLength() > 0
|
||||
? (100 * dh->getCompletedLength() /
|
||||
dh->getTotalLength())
|
||||
: 0) << "%)"
|
||||
: 0)
|
||||
<< "%)"
|
||||
<< " D:" << dh->getDownloadSpeed() / 1024
|
||||
<< "KiB/s, U:" << dh->getUploadSpeed() / 1024 << "KiB/s"
|
||||
<< std::endl;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue