summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-07-10 18:10:33 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-07-10 18:10:33 +0000
commit321fdf7a641ca75b4002c3a205f3858fd985e8b1 (patch)
tree35d5624bdc1cfde6d7ff0b2bd9352a828d6f5635
parenta3e7dffd20d2bc3e308cdba31409765a724663f4 (diff)
Remove cast
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4291 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r--src/modules/m_swhois.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_swhois.cpp b/src/modules/m_swhois.cpp
index b561a9660..2b7e58413 100644
--- a/src/modules/m_swhois.cpp
+++ b/src/modules/m_swhois.cpp
@@ -66,7 +66,7 @@ class cmd_swhois : public command_t
}
text = new std::string(line);
- dest->Extend("swhois", (char*)text);
+ dest->Extend("swhois", text);
}
}
};