diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2013-10-29 19:19:00 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2013-10-29 19:19:00 +0000 |
commit | eddfc4585d53d006ff7c0ac1db5b1d3551195a5b (patch) | |
tree | 7252124109f1dbea173b7e004d9d3be3eb01b586 /modules | |
parent | 8c9a85f4ff8531a22dba1ad30295edddf7c5143c (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
Diffstat (limited to 'modules')
-rw-r--r-- | modules/m_topic.c | 2 |
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) { |