summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-11-30 12:16:23 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-11-30 12:16:23 +0000
commitae355704b0c7e952ea920a7e48c64f2934560e90 (patch)
tree59d7175372cb4cc14f33e1bf00c58d4b7526c478
parent567135a702979c714a89b7fc986f929ea810ad07 (diff)
Casting glitch
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2047 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r--src/modules/m_spanningtree.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree.cpp b/src/modules/m_spanningtree.cpp
index 46683202d..df2939f76 100644
--- a/src/modules/m_spanningtree.cpp
+++ b/src/modules/m_spanningtree.cpp
@@ -467,7 +467,7 @@ class TreeSocket : public InspSocket
strlcpy(c->topic,topic.c_str(),MAXTOPIC);
strlcpy(c->setby,setby.c_str(),NICKMAX);
c->topicset = ts;
- WriteChannelWithServ(source.c_str(), c, "TOPIC %s :%s", c->name, c->topic)
+ WriteChannelWithServ((char*)source.c_str(), c, "TOPIC %s :%s", c->name, c->topic);
}
}