diff options
author | Naram Qashat <cyberbotx@cyberbotx.com> | 2010-07-27 20:03:10 -0400 |
---|---|---|
committer | Naram Qashat <cyberbotx@cyberbotx.com> | 2010-07-27 20:03:10 -0400 |
commit | 66c0e280ee9d4940fe5a477d3e933ba4221e35db (patch) | |
tree | 8c55ebda067c05b2b0d4cda973c09e8463c24174 /modules/core/os_stats.cpp | |
parent | 92edce8ef9da7bb1bd337c2b9ece2589d664689c (diff) |
A few more random annoyances cleaned up.
Diffstat (limited to 'modules/core/os_stats.cpp')
-rw-r--r-- | modules/core/os_stats.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/core/os_stats.cpp b/modules/core/os_stats.cpp index b7f9174e4..08a27e31d 100644 --- a/modules/core/os_stats.cpp +++ b/modules/core/os_stats.cpp @@ -244,7 +244,7 @@ class CommandOSStats : public Command } get_operserv_stats(&count, &mem); notice_lang(Config.s_OperServ, u, OPER_STATS_OPERSERV_MEM, count, (mem + 512) / 1024); - get_session_stats(&count, &mem); + get_session_stats(count, mem); notice_lang(Config.s_OperServ, u, OPER_STATS_SESSIONS_MEM, count, (mem + 512) / 1024); return MOD_CONT; @@ -381,7 +381,7 @@ void get_operserv_stats(long *nrec, long *memuse) } } - get_exception_stats(&count2, &mem2); + get_exception_stats(count2, mem2); count += count2; mem += mem2; |