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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user