Skip to content

Commit

Permalink
replaced std::endl with \n
Browse files Browse the repository at this point in the history
  • Loading branch information
mxaddict committed Feb 13, 2024
1 parent 187c74d commit 04f9d9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/run_command.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ UniValue RunCommandParseJSON(const std::string& str_command, const std::string&
bp::std_in < stdin_stream
);
if (!str_std_in.empty()) {
stdin_stream << str_std_in << std::endl;
stdin_stream << str_std_in << "\n";
}
stdin_stream.pipe().close();

Expand Down

0 comments on commit 04f9d9f

Please sign in to comment.