diff options
author | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-09-30 18:45:09 +0000 |
---|---|---|
committer | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-09-30 18:45:09 +0000 |
commit | 1e918b949ce6d96b7f294f659d907546e5d60e44 (patch) | |
tree | d8c1ec8ee383d85a186117ef8980631e35250e7a /src/core/cs_suspend.c | |
parent | 06f53a85821be6c7d276e2ee5721163d469af784 (diff) |
Various constification/g++ fixes..
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1184 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/core/cs_suspend.c')
-rw-r--r-- | src/core/cs_suspend.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/cs_suspend.c b/src/core/cs_suspend.c index 674861578..30684243d 100644 --- a/src/core/cs_suspend.c +++ b/src/core/cs_suspend.c @@ -116,7 +116,7 @@ int do_suspend(User * u) if ((c = findchan(ci->name))) { struct c_userlist *cu, *next; - char *av[3]; + const char *av[3]; for (cu = c->users; cu; cu = next) { next = cu->next; |