diff options
author | rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b <rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2006-03-01 17:21:10 +0000 |
---|---|---|
committer | rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b <rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2006-03-01 17:21:10 +0000 |
commit | ba2da27fa1d1b26ab4450804cb61992cd3af059f (patch) | |
tree | 678d03a60fd6d09d2727428d4e9389e7f9511810 | |
parent | c00fd1215edb20d088a418b70394e957940b5828 (diff) |
xop char is a const char * now, as that is what is returned.
git-svn-id: svn://svn.anope.org/anope/trunk@988 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@713 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r-- | src/core/cs_access.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/cs_access.c b/src/core/cs_access.c index f3858b44f..7a98716ed 100644 --- a/src/core/cs_access.c +++ b/src/core/cs_access.c @@ -101,7 +101,7 @@ static int access_list(User * u, int index, ChannelInfo * ci, int *sent_header) { ChanAccess *access = &ci->access[index]; - char *xop; + const char *xop; if (!access->in_use) return 0; |