summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2013-10-29 19:19:00 +0000
committermichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2013-10-29 19:19:00 +0000
commiteddfc4585d53d006ff7c0ac1db5b1d3551195a5b (patch)
tree7252124109f1dbea173b7e004d9d3be3eb01b586
parent8c9a85f4ff8531a22dba1ad30295edddf7c5143c (diff)
- m_topic.c: constification
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@2521 82007160-df01-0410-b94d-b575c5fd34c7
-rw-r--r--modules/m_topic.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/m_topic.c b/modules/m_topic.c
index 5d088ef..9eeba26 100644
--- a/modules/m_topic.c
+++ b/modules/m_topic.c
@@ -69,7 +69,7 @@ m_topic(struct Client *client_p, struct Client *source_p,
/* setting topic */
if (parc > 2)
{
- struct Membership *ms;
+ const struct Membership *ms = NULL;
if ((ms = find_channel_link(source_p, chptr)) == NULL)
{