diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-12-04 21:15:08 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-12-04 21:15:08 +0000 |
commit | a53b41417bc825bfce8f932c079a8f90336299c5 (patch) | |
tree | 058a99758f3d1e133f1428cfc9573e7e82e2294c | |
parent | 9247effb608df0e3756474f9b74bf9654b55b978 (diff) |
Missing semicolons really do sucks ass
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2176 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | src/modules/m_conn_lusers.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_conn_lusers.cpp b/src/modules/m_conn_lusers.cpp index 7aeb48850..779d14576 100644 --- a/src/modules/m_conn_lusers.cpp +++ b/src/modules/m_conn_lusers.cpp @@ -58,7 +58,7 @@ class ModuleConnLUSERS : public Module Module* Proto = Srv->FindModule("m_spanningtree.so"); if (Proto) { - Proto->OnPreCommand("LUSERS", NULL, 0, user) + Proto->OnPreCommand("LUSERS", NULL, 0, user); } else { |