diff options
author | Kung Hsu <kung@cygnus> | 1994-03-01 21:39:28 +0000 |
---|---|---|
committer | Kung Hsu <kung@cygnus> | 1994-03-01 21:39:28 +0000 |
commit | bb37e7161e6c7f271f56d8b920cb3a0ad06116de (patch) | |
tree | db4dacaa6702474f2e2a1c68aa34f52198df8e79 /bfd/i386os9k.c | |
parent | f57318eba523bfee2fdc2f9188a404accdaad502 (diff) | |
download | gdb-bb37e7161e6c7f271f56d8b920cb3a0ad06116de.zip gdb-bb37e7161e6c7f271f56d8b920cb3a0ad06116de.tar.gz gdb-bb37e7161e6c7f271f56d8b920cb3a0ad06116de.tar.bz2 |
Modified Files:
ChangeLog i386os9k.c Makefile.in
* i386os9k.c: use new functions bfd_set_error and bfd_get_error.
* Makefile.in: delete an extra blank.
Diffstat (limited to 'bfd/i386os9k.c')
-rw-r--r-- | bfd/i386os9k.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bfd/i386os9k.c b/bfd/i386os9k.c index ba3e5b1..14e8366 100644 --- a/bfd/i386os9k.c +++ b/bfd/i386os9k.c @@ -107,13 +107,13 @@ os9k_object_p (abfd) if (bfd_read ((PTR) &exec_bytes, MHCOM_BYTES_SIZE, 1, abfd) != MHCOM_BYTES_SIZE) { - bfd_error = wrong_format; + bfd_set_error (bfd_error_wrong_format); return 0; } anexec.a_info = bfd_h_get_16 (abfd, exec_bytes.m_sync); if (N_BADMAG (anexec)) { - bfd_error = wrong_format; + bfd_set_error (bfd_error_wrong_format); return 0; } @@ -184,7 +184,7 @@ os9k_mkobject (abfd) rawptr = (struct bout_data_struct *) bfd_zalloc (abfd, sizeof (struct bout_data_struct)); if (rawptr == NULL) { - bfd_error = no_memory; + bfd_set_error (bfd_error_no_memory); return false; } @@ -263,7 +263,7 @@ os9k_set_section_contents (abfd, section, location, offset, count) if (abfd->output_has_begun == false) { /* set by bfd.c handler */ if ((obj_textsec (abfd) == NULL) || (obj_datasec (abfd) == NULL) /*|| (obj_textsec (abfd)->_cooked_size == 0) || (obj_datasec (abfd)->_cooked_size == 0)*/) { - bfd_error = invalid_operation; + bfd_set_error (bfd_error_invalid_operation); return false; } |