diff options
| author | Patrick Lodder <[email protected]> | 2015-08-30 18:48:53 +0200 |
|---|---|---|
| committer | Patrick Lodder <[email protected]> | 2015-08-30 18:48:53 +0200 |
| commit | 337bc990e82a7b4d6304900c891c0193006f8519 (patch) | |
| tree | ea8a35feca417986950e03056d28719d0564fa34 /src/main.cpp | |
| parent | Merge pull request #1269 from langerhans/1.10-dev-nodebloom (diff) | |
| parent | Corrected missing new lines in error messages (diff) | |
| download | discoin-337bc990e82a7b4d6304900c891c0193006f8519.tar.xz discoin-337bc990e82a7b4d6304900c891c0193006f8519.zip | |
Merge pull request #1274 from rnicoll/1.10-missing-newline
Corrected missing new lines in error messages
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index ed32904c6..8e52b5a8e 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -3550,7 +3550,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) { |