diff options
| author | 2008-05-05 03:56:48 +0000 | |
|---|---|---|
| committer | 2008-05-05 03:56:48 +0000 | |
| commit | 50d094548656cfe1f5eb7b0f015a71e2d9f28766 (patch) | |
| tree | a6f7bc5bcdcaa156d051a139573b1e967c80df2c /src/modules/m_check.cpp | |
| parent | parameters are already std::string no need to cast here (diff) | |
and no need to cast parameters to std::string here
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9639 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_check.cpp')
| -rw-r--r-- | src/modules/m_check.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_check.cpp b/src/modules/m_check.cpp index 36880d5ed..775198213 100644 --- a/src/modules/m_check.cpp +++ b/src/modules/m_check.cpp @@ -147,7 +147,7 @@ class CommandCheck : public Command user->WriteServ(checkstr + " matches " + ConvToStr(x)); } - user->WriteServ(checkstr + " END " + std::string(parameters[0])); + user->WriteServ(checkstr + " END " + parameters[0]); return CMD_LOCALONLY; } |
