aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <[email protected]>2015-08-03 17:50:27 +0200
committerWladimir J. van der Laan <[email protected]>2015-08-03 17:51:18 +0200
commita2bf40dde7465292a29234c6d32d9df7e386617e (patch)
tree62d1f58b350d3c7f43fa40faa6c979d09e000d33 /src/main.cpp
parentMerge pull request #6501 (diff)
parentMake sure LogPrintf strings are line-terminated (diff)
downloaddiscoin-a2bf40dde7465292a29234c6d32d9df7e386617e.tar.xz
discoin-a2bf40dde7465292a29234c6d32d9df7e386617e.zip
Merge pull request #6497
f18b8ec Make sure LogPrintf strings are line-terminated (Wladimir J. van der Laan)
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index d470ba900..fa1228165 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -3398,7 +3398,7 @@ bool LoadExternalBlockFile(FILE* fileIn, CDiskBlockPos *dbp)
}
}
} catch (const std::exception& e) {
- LogPrintf("%s: Deserialize or I/O error - %s", __func__, e.what());
+ LogPrintf("%s: Deserialize or I/O error - %s\n", __func__, e.what());
}
}
} catch (const std::runtime_error& e) {