diff options
author | Josh Hartshorn <joshhartshorn1021@gmail.com> | 2018-02-16 22:01:40 -0800 |
---|---|---|
committer | Josh Hartshorn <joshhartshorn1021@gmail.com> | 2018-02-16 22:19:42 -0800 |
commit | 8b661f971aec9dfdab44c61c3431bb5233d00ce0 (patch) | |
tree | f6d1ab3d4316927c4e9e7c23ad8d45e0a97b55f2 /src/init.cpp | |
parent | 23481fa50301201ef5a60675ef899aa6ce94ca03 (diff) |
fixes #12465 added missing terminating newline character in log message
Diffstat (limited to 'src/init.cpp')
-rw-r--r-- | src/init.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp index 895a5358f4..5c5d1ee792 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -1526,7 +1526,7 @@ bool AppInitMain() if (!is_coinsview_empty) { uiInterface.InitMessage(_("Verifying blocks...")); if (fHavePruned && gArgs.GetArg("-checkblocks", DEFAULT_CHECKBLOCKS) > MIN_BLOCKS_TO_KEEP) { - LogPrintf("Prune: pruned datadir may not have more than %d blocks; only checking available blocks", + LogPrintf("Prune: pruned datadir may not have more than %d blocks; only checking available blocks\n", MIN_BLOCKS_TO_KEEP); } |