mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-06 06:45:56 +08:00
s/strerror/safe_strerror/
This commit is contained in:
@ -804,7 +804,7 @@ go32_terminal_inferior (void)
|
||||
{
|
||||
redir_to_debugger (&child_cmd);
|
||||
error ("Cannot redirect standard handles for program: %s.",
|
||||
strerror (errno));
|
||||
safe_strerror (errno));
|
||||
}
|
||||
/* set the console device of the inferior to whatever mode
|
||||
(raw or cooked) we found it last time */
|
||||
@ -838,7 +838,7 @@ go32_terminal_ours (void)
|
||||
{
|
||||
redir_to_child (&child_cmd);
|
||||
error ("Cannot redirect standard handles for debugger: %s.",
|
||||
strerror (errno));
|
||||
safe_strerror (errno));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user