diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-10-15 13:11:41 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-10-15 13:11:41 +0000 |
commit | 802cbffcb7816de7e4071b300966d868a14dc922 (patch) | |
tree | 6f65d943910d7ced36963966de186b4ab9ed7544 | |
parent | b194ca40b69ff2d7df2676dfa25f15ec2dd62825 (diff) |
Bad Brain, bad. *spank* :p
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8201 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | src/command_parse.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command_parse.cpp b/src/command_parse.cpp index e751db6d3..30865f414 100644 --- a/src/command_parse.cpp +++ b/src/command_parse.cpp @@ -464,7 +464,7 @@ bool CommandParser::FindSym(void** v, void* h, const std::string &name) const char* err = dlerror(); if (err && !(*v)) { - ServerInstance->Log(SPARSE, "Error loading core command %s: %s\n", name, err); + ServerInstance->Log(SPARSE, "Error loading core command %s: %s\n", name.c_str(), err); return false; } return true; |