From 48184679086094cc5d6067de8c31a6823fc71732 Mon Sep 17 00:00:00 2001 From: Torbjörn Andersson Date: Fri, 22 Jan 2010 19:05:02 +0000 Subject: 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 --- graphics/video/video_player.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'graphics/video') diff --git a/graphics/video/video_player.cpp b/graphics/video/video_player.cpp index a8c4ccba89..ed96ac5fc5 100644 --- a/graphics/video/video_player.cpp +++ b/graphics/video/video_player.cpp @@ -167,7 +167,7 @@ void VideoPlayer::processVideoEvents(Common::List &stopEvents) { _skipVideo = true; } - for (Common::List::const_iterator iter = stopEvents.begin(); iter != stopEvents.end(); iter++) { + for (Common::List::const_iterator iter = stopEvents.begin(); iter != stopEvents.end(); ++iter) { if (curEvent.type == iter->type) { if (iter->type == Common::EVENT_KEYDOWN || iter->type == Common::EVENT_KEYUP) { if (curEvent.kbd.keycode == iter->kbd.keycode) { -- cgit v1.2.3