diff options
author | Jonas Schnelli <dev@jonasschnelli.ch> | 2018-02-17 22:17:06 +1100 |
---|---|---|
committer | Jonas Schnelli <dev@jonasschnelli.ch> | 2018-02-17 22:17:24 +1100 |
commit | 294a766eb85068ba6e397702b1aac50dcae8fb37 (patch) | |
tree | 36b650d618d912eb6ba51cef1479a845d883cac5 | |
parent | daa84b33540aa3bcb74aa8b0cf08362d688bb4ce (diff) | |
parent | 8b661f971aec9dfdab44c61c3431bb5233d00ce0 (diff) |
Merge #12468: Add missing newline in init.cpp log message
8b661f971 fixes #12465 added missing terminating newline character in log message (Josh Hartshorn)
Pull request description:
Adding missing new line as detailed in #12465
Tree-SHA512: 48f1e3f892f7c13b862d24b4e807cc42310001cab65d771ddf758155f727554bf13c59fa9a6c9fb93d1d0466f03f142289b5fcad9d7938fd55b1a268fc1307ed
-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); } |