diff options
| author | 2008-04-13 16:45:32 +0000 | |
|---|---|---|
| committer | 2008-04-13 16:45:32 +0000 | |
| commit | 55924e9537d3ed235dae5f38da8f59c55327fe7f (patch) | |
| tree | be0063b6d69d2b51143774428ebddf76ac400270 /src/users.cpp | |
| parent | Cast these to shut up compiler (diff) | |
char -> const char
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9485 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/users.cpp')
| -rw-r--r-- | src/users.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/users.cpp b/src/users.cpp index 5b46d172c..108ce1385 100644 --- a/src/users.cpp +++ b/src/users.cpp @@ -861,7 +861,7 @@ void User::CheckClass() void User::CheckLines() { - char* check[] = { "G" , "K", NULL }; + const char* check[] = { "G" , "K", NULL }; if (!this->exempt) { |
