summaryrefslogtreecommitdiff
path: root/src/log.cpp
diff options
context:
space:
mode:
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 9dc574d01..c584d126a 100644
--- a/src/log.cpp
+++ b/src/log.cpp
@@ -141,7 +141,7 @@ void log_printline(enum LogMessageLevel lev, const std::string &text)
os << getTimestamp() << ": " << levelname << "["<<threadname<<"]: " << text;
for(std::vector<ILogOutput*>::iterator i = log_outputs[lev].begin();
- i != log_outputs[lev].end(); i++) {
+ i != log_outputs[lev].end(); ++i) {
ILogOutput *out = *i;
if (out->silence)
continue;