summaryrefslogtreecommitdiffstats
path: root/src/Log.cpp
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2014-01-20 21:54:26 +0100
committerMatthias P. Braendli <matthias.braendli@mpb.li>2014-01-20 21:54:26 +0100
commitb73e13d70477549bfb970fc4fc005473223a4402 (patch)
tree849a167c41b197d769666d093ed18cc386aafa5e /src/Log.cpp
parentca4fb30104c5f883794c40f2516636447ea5dd0f (diff)
downloaddabmux-b73e13d70477549bfb970fc4fc005473223a4402.tar.gz
dabmux-b73e13d70477549bfb970fc4fc005473223a4402.tar.bz2
dabmux-b73e13d70477549bfb970fc4fc005473223a4402.zip
fix some cppcheck errors
Diffstat (limited to 'src/Log.cpp')
-rw-r--r--src/Log.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Log.cpp b/src/Log.cpp
index 30cc1f7..e428a0b 100644
--- a/src/Log.cpp
+++ b/src/Log.cpp
@@ -70,7 +70,7 @@ void Logger::logstr(log_level_t level, std::string message)
for (std::list<LogBackend*>::iterator it = backends.begin();
it != backends.end();
- it++) {
+ ++it) {
(*it)->log(level, message);
}