diff options
author | Larry Ruane <larryruane@gmail.com> | 2021-03-24 04:31:48 -0600 |
---|---|---|
committer | Larry Ruane <larryruane@gmail.com> | 2021-03-24 04:31:48 -0600 |
commit | 804ac106313eb52d3a86f42c681b42acf90974c8 (patch) | |
tree | b5abbd3fa54a3e1330140675db6a9d977923146a /src/init.cpp | |
parent | fa2a5b8f3aeb978b64189203cbbe95a00ac92a6a (diff) |
remove unnecessary newline from initWarning() argument
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 7d5420e3be..f4b7699233 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -1308,7 +1308,7 @@ bool AppInitMain(const util::Ref& context, NodeContext& node, interfaces::BlockA LogPrintf("Config file: %s\n", config_file_path.string()); } else if (args.IsArgSet("-conf")) { // Warn if no conf file exists at path provided by user - InitWarning(strprintf(_("The specified config file %s does not exist\n"), config_file_path.string())); + InitWarning(strprintf(_("The specified config file %s does not exist"), config_file_path.string())); } else { // Not categorizing as "Warning" because it's the default behavior LogPrintf("Config file: %s (not found, skipping)\n", config_file_path.string()); |