diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2015-12-19 14:47:37 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2015-12-19 14:47:37 +0000 |
commit | 3f2970fadbe2d4dc7057d0c3b83faa93b8622bde (patch) | |
tree | 342e6af9a159ff6fa489e26f3ff653c3ae6b0b71 /src/common/scoped_message_writer.h | |
parent | Merge pull request #544 (diff) | |
download | monero-3f2970fadbe2d4dc7057d0c3b83faa93b8622bde.tar.xz |
Add missing semicolons after log statements
Diffstat (limited to 'src/common/scoped_message_writer.h')
-rw-r--r-- | src/common/scoped_message_writer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/scoped_message_writer.h b/src/common/scoped_message_writer.h index 77ba56200..c4d430c5e 100644 --- a/src/common/scoped_message_writer.h +++ b/src/common/scoped_message_writer.h @@ -88,7 +88,7 @@ public: { m_flush = false; - LOG_PRINT(m_oss.str(), m_log_level) + LOG_PRINT(m_oss.str(), m_log_level); if (epee::log_space::console_color_default == m_color) { |