From 3adf45ddc0fb943dc0b94e39d1d580d56e35ef7a Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Sat, 9 Jun 2018 14:41:35 -0700 Subject: [PATCH] modules/console: Cleanup conformity of output from mem cmd. --- modules/console.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/console.cc b/modules/console.cc index 09251830a..a6c9f09a2 100644 --- a/modules/console.cc +++ b/modules/console.cc @@ -531,10 +531,10 @@ console_cmd__mem(opt &out, const string_view &line) }; out << "IRCd thread allocations:" << std::endl - << "alloc count ____ " << this_thread.alloc_count << std::endl - << "freed count ____ " << this_thread.free_count << std::endl - << "alloc bytes ____ " << this_thread.alloc_bytes << std::endl - << "freed bytes ____ " << this_thread.free_bytes << std::endl + << "alloc count: " << this_thread.alloc_count << std::endl + << "freed count: " << this_thread.free_count << std::endl + << "alloc bytes: " << this_thread.alloc_bytes << std::endl + << "freed bytes: " << this_thread.free_bytes << std::endl << std::endl; thread_local char buf[1024];