diff options
author | David MacKenzie <djm@cygnus> | 1994-02-17 18:10:18 +0000 |
---|---|---|
committer | David MacKenzie <djm@cygnus> | 1994-02-17 18:10:18 +0000 |
commit | 7681bc7b30b1ec5006484d892121ce6c0059442a (patch) | |
tree | f7a46190dd03ed59ff85398c89c495290c7b85eb /binutils/nlmconv.c | |
parent | d1ad85a6e6eead5ba7a2950c3d63f39924397353 (diff) | |
download | gdb-7681bc7b30b1ec5006484d892121ce6c0059442a.zip gdb-7681bc7b30b1ec5006484d892121ce6c0059442a.tar.gz gdb-7681bc7b30b1ec5006484d892121ce6c0059442a.tar.bz2 |
* ar.c, bucomm.c, nlmconv.c, nm.c, objcopy.c, objdump.c,
size.c: Use bfd_get_error and bfd_set_error and new error names.
Diffstat (limited to 'binutils/nlmconv.c')
-rw-r--r-- | binutils/nlmconv.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/binutils/nlmconv.c b/binutils/nlmconv.c index 14e444f..5293c08 100644 --- a/binutils/nlmconv.c +++ b/binutils/nlmconv.c @@ -174,6 +174,7 @@ main (argc, argv) char **matching; program_name = argv[0]; + xmalloc_set_program_name (program_name); bfd_init (); @@ -300,7 +301,7 @@ main (argc, argv) if (! bfd_check_format_matches (inbfd, bfd_object, &matching)) { bfd_nonfatal (input_file); - if (bfd_error == file_ambiguously_recognized) + if (bfd_get_error () == bfd_error_file_ambiguously_recognized) { list_matching_formats (matching); free (matching); @@ -710,7 +711,7 @@ main (argc, argv) || ! bfd_check_format (sharedbfd, bfd_object)) { fprintf (stderr, "%s:%s: %s\n", program_name, sharelib_file, - bfd_errmsg (bfd_error)); + bfd_errmsg (bfd_get_error ())); sharelib_file = NULL; } else |