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/cryptonote_core/miner.cpp | |
| parent | 5d33b43d8d957b4ec8051f54a1d14af35226a6dd (diff) | |
| download | monzero-core-3f2970fadbe2d4dc7057d0c3b83faa93b8622bde.tar.gz monzero-core-3f2970fadbe2d4dc7057d0c3b83faa93b8622bde.tar.xz monzero-core-3f2970fadbe2d4dc7057d0c3b83faa93b8622bde.zip | |
Add missing semicolons after log statements
Diffstat (limited to 'src/cryptonote_core/miner.cpp')
| -rw-r--r-- | src/cryptonote_core/miner.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptonote_core/miner.cpp b/src/cryptonote_core/miner.cpp index abb74b740..00a474524 100644 --- a/src/cryptonote_core/miner.cpp +++ b/src/cryptonote_core/miner.cpp @@ -257,7 +257,7 @@ namespace cryptonote m_threads.push_back(boost::thread(attrs, boost::bind(&miner::worker_thread, this))); } - LOG_PRINT_L0("Mining has started with " << threads_count << " threads, good luck!" ) + LOG_PRINT_L0("Mining has started with " << threads_count << " threads, good luck!" ); return true; } //----------------------------------------------------------------------------------------------------- |
