diff options
Diffstat (limited to 'src/modules')
-rw-r--r-- | src/modules/m_spanningtree/capab.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree/capab.cpp b/src/modules/m_spanningtree/capab.cpp index 808b5900a..64cfef9d7 100644 --- a/src/modules/m_spanningtree/capab.cpp +++ b/src/modules/m_spanningtree/capab.cpp @@ -52,7 +52,7 @@ static std::string BuildModeList(ModeType type) std::vector<std::string> modes; for(char c='A'; c <= 'z'; c++) { - ModeHandler* mh = ServerInstance->Modes->FindMode(c, type) + ModeHandler* mh = ServerInstance->Modes->FindMode(c, type); if (mh) { std::string mdesc = mh->name; |