Skip to content

Commit

Permalink
Add newline missing in strerror() output
Browse files Browse the repository at this point in the history
This is a fix to the changes in 9a3d29d
  • Loading branch information
tonyelewis committed Nov 29, 2017
1 parent ab410aa commit 0739f47
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion source/src_common/common/command_executer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ bool command_executer::execute(const path &arg_command, ///< TODOCUMENT
cerr << "Error executing "
<< arg_command.string()
<< " : "
<< strerror( errno );
<< strerror( errno )
<< "\n";
_exit(127);
}
}
Expand Down

0 comments on commit 0739f47

Please sign in to comment.