diff options
| author | 2005-05-30 22:36:08 +0000 | |
|---|---|---|
| committer | 2005-05-30 22:36:08 +0000 | |
| commit | f96ddd39748f283768217fb1a3cdd3a7cbde353a (patch) | |
| tree | 12929cfa52dcd3de5871efe355168f762a3740eb /src/modules/m_sethost.cpp | |
| parent | Fixed ircd_connector::CheckPing returning an undefined result (diff) | |
Started on -Wall - safe compile
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1570 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_sethost.cpp')
| -rw-r--r-- | src/modules/m_sethost.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_sethost.cpp b/src/modules/m_sethost.cpp index c064bbe0b..d4f8a4f1d 100644 --- a/src/modules/m_sethost.cpp +++ b/src/modules/m_sethost.cpp @@ -29,7 +29,7 @@ Server *Srv; void handle_sethost(char **parameters, int pcnt, userrec *user) { - for (int x = 0; x < strlen(parameters[0]); x++) + for (unsigned int x = 0; x < strlen(parameters[0]); x++) { if (((tolower(parameters[0][x]) < 'a') || (tolower(parameters[0][x]) > 'z')) && (parameters[0][x] != '.')) { |
