diff options
| author | practicalswift <[email protected]> | 2018-07-27 00:07:37 +0200 |
|---|---|---|
| committer | practicalswift <[email protected]> | 2018-07-27 18:47:03 +0200 |
| commit | 620361fce8b3d3c274a7b2beaed199b65ac4fb41 (patch) | |
| tree | d6c4a1daffd680b3f8b3f55ae296209344f5080d /src/init.cpp | |
| parent | Merge #13423: [net] Thread safety annotations in net_processing (diff) | |
| download | discoin-620361fce8b3d3c274a7b2beaed199b65ac4fb41.tar.xz discoin-620361fce8b3d3c274a7b2beaed199b65ac4fb41.zip | |
Fix accidental use of the addition assignment operator ("+="). Remove newlines from error 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 c7ea40817..a648785ad 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -927,7 +927,7 @@ bool AppInitParameterInteraction() // also see: InitParameterInteraction() if (!fs::is_directory(GetBlocksDir(false))) { - return InitError(strprintf(_("Specified blocks directory \"%s\" does not exist.\n"), gArgs.GetArg("-blocksdir", "").c_str())); + return InitError(strprintf(_("Specified blocks directory \"%s\" does not exist."), gArgs.GetArg("-blocksdir", "").c_str())); } // if using block pruning, then disallow txindex |