CdbExt: Fix compile warning

Change-Id: I52bbf904a3a6a3cd3d5dcab34e649a44d406af98
Reviewed-by: David Schulz <david.schulz@theqtcompany.com>
This commit is contained in:
Christian Stenger
2015-03-13 10:50:32 +01:00
committed by David Schulz
parent a053724c28
commit c9dc686a04

View File

@@ -2231,7 +2231,7 @@ static bool dumpQDateTime(const SymbolGroupValue &v, std::wostream &str)
<< offset << separator
<< std::hex;
if (timeZoneString.length() > 2) {
for (int i = 1; i < timeZoneString.length() - 1; ++i) // remove '"'
for (unsigned i = 1; i < timeZoneString.length() - 1; ++i) // remove '"'
str << (int)timeZoneString.at(i);
}
str << std::dec << separator << status;