Silenced some more cppcheck warnings. Some of these may seem silly, but the way

I figure it the changes are harmless at worst, and making them will make it
easier to find real errors in the (still quite long) list of warnings.

svn-id: r47443
This commit is contained in:
Torbjörn Andersson 2010-01-22 19:05:02 +00:00
parent 8f41cc0631
commit 4818467908
13 changed files with 21 additions and 29 deletions

View file

@ -787,7 +787,7 @@ void SequenceDelayList::tick() {
debugC(ERROR_DETAILED, kLureDebugScripts, "Delay List check start at time %d",
g_system->getMillis());
for (i = begin(); i != end(); i++) {
for (i = begin(); i != end(); ++i) {
SequenceDelayData *entry = (*i).get();
debugC(ERROR_DETAILED, kLureDebugScripts, "Delay List check %xh at time %d", entry->sequenceOffset, entry->timeoutCtr);