diff options
| author | J Ross Nicoll <[email protected]> | 2015-08-29 17:33:02 +0100 |
|---|---|---|
| committer | J Ross Nicoll <[email protected]> | 2015-08-29 17:33:02 +0100 |
| commit | 1d92617e1513cfd71baddb89e8a5e0688332d287 (patch) | |
| tree | d67d6600b43091a0d537e59148d56a756d3d3709 /src/main.cpp | |
| parent | Merge pull request #1268 from patricklodder/1.10-auxpow-tests (diff) | |
| download | discoin-1d92617e1513cfd71baddb89e8a5e0688332d287.tar.xz discoin-1d92617e1513cfd71baddb89e8a5e0688332d287.zip | |
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 070b27832..24434f6e7 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) { |