aboutsummaryrefslogtreecommitdiff
path: root/src/blockchain_db/berkeleydb
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2015-12-19 14:47:37 +0000
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2015-12-19 14:47:37 +0000
commit3f2970fadbe2d4dc7057d0c3b83faa93b8622bde (patch)
tree342e6af9a159ff6fa489e26f3ff653c3ae6b0b71 /src/blockchain_db/berkeleydb
parentMerge pull request #544 (diff)
downloadmonero-3f2970fadbe2d4dc7057d0c3b83faa93b8622bde.tar.xz
Add missing semicolons after log statements
Diffstat (limited to 'src/blockchain_db/berkeleydb')
-rw-r--r--src/blockchain_db/berkeleydb/db_bdb.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/blockchain_db/berkeleydb/db_bdb.cpp b/src/blockchain_db/berkeleydb/db_bdb.cpp
index 07cb622a7..236bc4fe6 100644
--- a/src/blockchain_db/berkeleydb/db_bdb.cpp
+++ b/src/blockchain_db/berkeleydb/db_bdb.cpp
@@ -2176,7 +2176,7 @@ uint8_t BlockchainBDB::get_hard_fork_version(uint64_t height) const
void BlockchainBDB::checkpoint_worker() const
{
- LOG_PRINT_L0("Entering BDB checkpoint thread.")
+ LOG_PRINT_L0("Entering BDB checkpoint thread.");
int count = 0;
while(m_run_checkpoint && m_open)
{
@@ -2188,12 +2188,12 @@ void BlockchainBDB::checkpoint_worker() const
count = 0;
if(m_env->txn_checkpoint(0, 0, 0) != 0)
{
- LOG_PRINT_L0("BDB txn_checkpoint failed.")
+ LOG_PRINT_L0("BDB txn_checkpoint failed.");
break;
}
}
}
- LOG_PRINT_L0("Leaving BDB checkpoint thread.")
+ LOG_PRINT_L0("Leaving BDB checkpoint thread.");
}
void BlockchainBDB::fixup()