diff options
author | David MacKenzie <djm@cygnus> | 1994-02-17 18:19:25 +0000 |
---|---|---|
committer | David MacKenzie <djm@cygnus> | 1994-02-17 18:19:25 +0000 |
commit | c4a081e17239660420dbfed33542e865ce932ea4 (patch) | |
tree | 0bdeccbe4873348f142a7f8d3e9a08573a6116ea /gdb/osfsolib.c | |
parent | f61b81b7c1ca5c2de10a9dd6294ced660ef92cbc (diff) | |
download | gdb-c4a081e17239660420dbfed33542e865ce932ea4.zip gdb-c4a081e17239660420dbfed33542e865ce932ea4.tar.gz gdb-c4a081e17239660420dbfed33542e865ce932ea4.tar.bz2 |
* corelow.c, exec.c, irix5-nat.c, mipsread.c, objfiles.c,
osfsolib.c, rs6000-nat.c, solib.c, symfile.c, utils.c,
xcoffexec.c: Use bfd_get_error and bfd_set_error and new error names.
Diffstat (limited to 'gdb/osfsolib.c')
-rw-r--r-- | gdb/osfsolib.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/osfsolib.c b/gdb/osfsolib.c index c86f084..55d20cf 100644 --- a/gdb/osfsolib.c +++ b/gdb/osfsolib.c @@ -189,7 +189,7 @@ solib_map_sections (so) { close (scratch_chan); error ("Could not open `%s' as an executable file: %s", - scratch_pathname, bfd_errmsg (bfd_error)); + scratch_pathname, bfd_errmsg (bfd_get_error ())); } /* Leave bfd open, core_xfer_memory and "info files" need it. */ so -> abfd = abfd; @@ -198,12 +198,12 @@ solib_map_sections (so) if (!bfd_check_format (abfd, bfd_object)) { error ("\"%s\": not in executable format: %s.", - scratch_pathname, bfd_errmsg (bfd_error)); + scratch_pathname, bfd_errmsg (bfd_get_error ())); } if (build_section_table (abfd, &so -> sections, &so -> sections_end)) { error ("Can't find the file sections in `%s': %s", - bfd_get_filename (exec_bfd), bfd_errmsg (bfd_error)); + bfd_get_filename (exec_bfd), bfd_errmsg (bfd_get_error ())); } for (p = so -> sections; p < so -> sections_end; p++) |