1
0
mirror of https://github.com/anope/anope.git synced 2026-07-08 18:23:13 +02:00

Some code cleanup and constification in nickserv.cpp.

This commit is contained in:
Naram Qashat
2010-07-30 08:09:07 -04:00
parent 0cacbf30d2
commit 527304ed2c
5 changed files with 28 additions and 33 deletions
+2 -2
View File
@@ -226,9 +226,9 @@ class CommandOSStats : public Command
notice_lang(Config.s_OperServ, u, OPER_STATS_USER_MEM, count, (mem + 512) / 1024);
get_channel_stats(&count, &mem);
notice_lang(Config.s_OperServ, u, OPER_STATS_CHANNEL_MEM, count, (mem + 512) / 1024);
get_core_stats(&count, &mem);
get_core_stats(count, mem);
notice_lang(Config.s_OperServ, u, OPER_STATS_GROUPS_MEM, count, (mem + 512) / 1024);
get_aliases_stats(&count, &mem);
get_aliases_stats(count, mem);
notice_lang(Config.s_OperServ, u, OPER_STATS_ALIASES_MEM, count, (mem + 512) / 1024);
get_chanserv_stats(&count, &mem);
notice_lang(Config.s_OperServ, u, OPER_STATS_CHANSERV_MEM, count, (mem + 512) / 1024);