uppsrc: Fixed some clang warnings

git-svn-id: svn://ultimatepp.org/upp/trunk@5808 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2013-02-15 18:22:42 +00:00
parent aa2ce5e0ae
commit d8cd08c64f
18 changed files with 49 additions and 56 deletions

View file

@ -262,7 +262,7 @@ int TextCompareCtrl::MeasureLength(const char *text) const
String TextCompareCtrl::ExpandTabs(const char *text) const
{
String out;
for(char c; c = *text++;)
for(char c; (c = *text++);)
if(c == '\t')
out.Cat(' ', tabsize - out.GetLength() % tabsize);
else