diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-04-26 01:25:07 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-04-26 01:25:07 +0000 |
commit | 15ec8bd3773cff3bb8cd36c5890569fdc19e1356 (patch) | |
tree | 609363ba40238c8d2c6b776bc0afc0dbeef5a504 /src/modules | |
parent | b6f5d703b010fa5e4cd1d082ea70fe0cc27fb9e9 (diff) |
Added -Wswitch -Wchar-subscripts -Wparentheses - more stable and more pedantic settings :)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1191 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules')
-rw-r--r-- | src/modules/m_antibottler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_antibottler.cpp b/src/modules/m_antibottler.cpp index fb85bb7b1..3b57d9d09 100644 --- a/src/modules/m_antibottler.cpp +++ b/src/modules/m_antibottler.cpp @@ -53,10 +53,10 @@ class ModuleAntiBottler : public Module { for (int j = 0; j < strlen(data); j++) { - if (data[j] = ':') + if (data[j] == ':') break; - if (data[j] = '"') + if (data[j] == '"') { not_bottler = true; } |