diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-01-20 21:54:26 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-01-20 21:54:26 +0100 |
commit | b73e13d70477549bfb970fc4fc005473223a4402 (patch) | |
tree | 849a167c41b197d769666d093ed18cc386aafa5e /src/Log.cpp | |
parent | ca4fb30104c5f883794c40f2516636447ea5dd0f (diff) | |
download | dabmux-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.cpp | 2 |
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); } |