diff options
author | Andrew Cagney <cagney@redhat.com> | 2002-03-27 21:35:35 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2002-03-27 21:35:35 +0000 |
commit | dc6728652ceb99c628f7e9ad642dd2eb2d01e2bd (patch) | |
tree | bb244d16bcf62ae36cde4cf120b32a9e75764376 /gdb/go32-nat.c | |
parent | d96429cda9c28efea76a640032cb73f2c02679e4 (diff) | |
download | gdb-dc6728652ceb99c628f7e9ad642dd2eb2d01e2bd.zip gdb-dc6728652ceb99c628f7e9ad642dd2eb2d01e2bd.tar.gz gdb-dc6728652ceb99c628f7e9ad642dd2eb2d01e2bd.tar.bz2 |
s/strerror/safe_strerror/
Diffstat (limited to 'gdb/go32-nat.c')
-rw-r--r-- | gdb/go32-nat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/go32-nat.c b/gdb/go32-nat.c index de5e586..31ac8d3 100644 --- a/gdb/go32-nat.c +++ b/gdb/go32-nat.c @@ -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)); } } } |