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];