From 620361fce8b3d3c274a7b2beaed199b65ac4fb41 Mon Sep 17 00:00:00 2001 From: practicalswift Date: Fri, 27 Jul 2018 00:07:37 +0200 Subject: Fix accidental use of the addition assignment operator ("+="). Remove newlines from error message. --- src/init.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/init.cpp') diff --git a/src/init.cpp b/src/init.cpp index c7ea40817d..a648785ad4 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 -- cgit v1.2.3