variables cleaning

This commit is contained in:
Andrzej Rybczak
2008-12-13 12:23:20 +01:00
parent 55c75355f8
commit 77e8cd0145
6 changed files with 45 additions and 46 deletions

View File

@@ -82,7 +82,7 @@ namespace
}
if (result.length() > 12)
result = result.substr(0, 12);
for (int i = result.length(); i <= 12; result += " ", i++) { }
for (size_t i = result.length(); i <= 12; result += " ", i++) { }
result += ": ";
return result;
}