diff options
Diffstat (limited to 'runtime/utils.cc')
-rw-r--r-- | runtime/utils.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/utils.cc b/runtime/utils.cc index 68d8417e01..df1ab9446a 100644 --- a/runtime/utils.cc +++ b/runtime/utils.cc @@ -1232,7 +1232,7 @@ bool Exec(std::vector<std::string>& arg_vector, std::string* error_msg) { execv(program, &args[0]); - *error_msg = StringPrintf("Failed to execv(%s): %s", command_line.c_str(), strerror(errno)); + PLOG(FATAL) << "Failed to execv(" << command_line << ")"; return false; } else { if (pid == -1) { |