diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2013-04-24 20:47:21 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2013-04-24 20:47:21 +0000 |
commit | bdb5e02835c2dd4120c0b189c2ac7c7ab88f82e1 (patch) | |
tree | 8c11f10c2734a495b8dab5c2274aa1eba5b81208 /modules | |
parent | b552f5f5b2d35b7a1b331c4a890f7f754193a92c (diff) |
- Constification
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/trunk@1857 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'modules')
-rw-r--r-- | modules/m_ison.c | 2 | ||||
-rw-r--r-- | modules/m_whowas.c | 2 |
2 files changed, 2 insertions, 2 deletions
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; |