From eddfc4585d53d006ff7c0ac1db5b1d3551195a5b Mon Sep 17 00:00:00 2001 From: michael Date: Tue, 29 Oct 2013 19:19:00 +0000 Subject: - 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 --- modules/m_topic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- cgit