aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_check.cpp
diff options
context:
space:
mode:
authorGravatar Adam2013-06-26 17:01:33 -0400
committerGravatar attilamolnar2013-08-04 16:08:57 +0200
commit8710724b5518ae9858309e548514f76e620a8459 (patch)
treecb4efb99580cb8957353848a9dc34d5a83ab172e /src/modules/m_check.cpp
parentMerge pull request #590 from SaberUK/master+module-logging (diff)
Change the syntax of FOREACH macros to be less dumb.
Diffstat (limited to 'src/modules/m_check.cpp')
-rw-r--r--src/modules/m_check.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_check.cpp b/src/modules/m_check.cpp
index 044af04ea..258352979 100644
--- a/src/modules/m_check.cpp
+++ b/src/modules/m_check.cpp
@@ -220,7 +220,7 @@ class CommandCheck : public Command
banlm->DoSyncChannel(targchan, creator, user);
// Show other listmodes as well
- FOREACH_MOD(I_OnSyncChannel,OnSyncChannel(targchan,creator,user));
+ FOREACH_MOD(OnSyncChannel, (targchan,creator,user));
dumpExt(user, checkstr, targchan);
}
else