Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2012-10-10 18:11:33 +0000
committerStijn Buys <ingar@osirion.org>2012-10-10 18:11:33 +0000
commit8a6f3d478c825d226a21b73f5bcec2b92bf31ccb (patch)
tree98afc6e442854b316bb61f0c970b9bc528efc2e4 /src/dedicated
parent54c29f6e8ae8f504e455de79ecbb1a16d0e634a1 (diff)
Use KiB in the dedicated server network statistics.
Diffstat (limited to 'src/dedicated')
-rw-r--r--src/dedicated/dedicated.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dedicated/dedicated.cc b/src/dedicated/dedicated.cc
index f93b5fa..63a1f43 100644
--- a/src/dedicated/dedicated.cc
+++ b/src/dedicated/dedicated.cc
@@ -73,8 +73,8 @@ void Dedicated::shutdown()
con_debug << "Statistics:" << std::endl;
con_debug << " uptime " << std::setfill(' ') << std::setw(3) << minutes << ":" << std::setfill('0') << std::setw(2) << seconds << std::endl;
- con_debug << " bytes sent " << std::setfill(' ') << std::setw(6) << core::Stats::network_bytes_sent / 1024 << " Kb" << std::endl;
- con_debug << " bytes received " << std::setw(6) << core::Stats::network_bytes_received / 1024 << " Kb" << std::endl;
+ con_debug << " bytes sent " << std::setfill(' ') << std::setw(6) << core::Stats::network_bytes_sent / 1024 << " KiB" << std::endl;
+ con_debug << " bytes received " << std::setw(6) << core::Stats::network_bytes_received / 1024 << " KiB" << std::endl;
con_debug << " compression " << std::setw(6) << ratio << " %" << std::endl;
core::Application::shutdown();