From bdb5e02835c2dd4120c0b189c2ac7c7ab88f82e1 Mon Sep 17 00:00:00 2001 From: michael Date: Wed, 24 Apr 2013 20:47:21 +0000 Subject: - Constification git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/trunk@1857 82007160-df01-0410-b94d-b575c5fd34c7 --- modules/m_ison.c | 2 +- modules/m_whowas.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'modules') diff --git a/modules/m_ison.c b/modules/m_ison.c index 0e67287..e8966bb 100644 --- a/modules/m_ison.c +++ b/modules/m_ison.c @@ -34,7 +34,7 @@ static void do_ison(struct Client *client_p, struct Client *source_p, - int parc, char *parv[]) + const int parc, char *parv[]) { struct Client *target_p = NULL; char *nick; diff --git a/modules/m_whowas.c b/modules/m_whowas.c index 2f6da27..0a0d542 100644 --- a/modules/m_whowas.c +++ b/modules/m_whowas.c @@ -41,7 +41,7 @@ static void whowas_do(struct Client *client_p, struct Client *source_p, - int parc, char *parv[]) + const int parc, char *parv[]) { int cur = 0; int max = -1; -- cgit