Fix accidental double std:: qualifiers.
PiperOrigin-RevId: 309136120
This commit is contained in:
parent
a6b3a2012e
commit
5c6dd75897
@ -149,7 +149,7 @@ void CheckCloseOnExecDoesNotLeakFDs(
|
|||||||
if (child_pid == kForkInChildProcessReturnValue) {
|
if (child_pid == kForkInChildProcessReturnValue) {
|
||||||
::execv(child_argv[0], child_argv);
|
::execv(child_argv[0], child_argv);
|
||||||
std::fprintf(stderr, "Error spawning child process: %s\n", strerror(errno));
|
std::fprintf(stderr, "Error spawning child process: %s\n", strerror(errno));
|
||||||
std::std::exit(kTextCloseOnExecHelperExecFailedCode);
|
std::exit(kTextCloseOnExecHelperExecFailedCode);
|
||||||
}
|
}
|
||||||
|
|
||||||
int child_status = 0;
|
int child_status = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user