0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-28 19:58:53 +02:00

modules/console: Cleanup conformity of output from mem cmd.

This commit is contained in:
Jason Volk 2018-06-09 14:41:35 -07:00
parent 0da4dec13c
commit 3adf45ddc0

View file

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