summaryrefslogtreecommitdiff
path: root/xml2cmp
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2012-05-20 15:25:00 +0200
committerJulien Nabet <serval2412@yahoo.fr>2012-05-20 15:25:37 +0200
commitc53812a1b7c45b1b5a4a341b178c40602c7dcbf7 (patch)
treec9d6a029aa5f4e6081be0aadb2ee2a11e68aa285 /xml2cmp
parentb8c046acfc235cbfb09d598b502a66922045cabc (diff)
Some cppcheck cleaning
Change-Id: Ic30cdeffabec1eb1a6c153ac450a3d28064ef534
Diffstat (limited to 'xml2cmp')
-rw-r--r--xml2cmp/source/support/sistr.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/xml2cmp/source/support/sistr.cxx b/xml2cmp/source/support/sistr.cxx
index 1a59ea78cc50..626633e0388d 100644
--- a/xml2cmp/source/support/sistr.cxx
+++ b/xml2cmp/source/support/sistr.cxx
@@ -275,7 +275,7 @@ Simstr::is_no_text() const
return true;
int i;
- for (i = 0; sz[i] <= 32 && i < len; i++) ;
+ for (i = 0; i < len && sz[i] <= 32 ; i++) ;
if (i < len)
return false;
return true;