Modified Files:
authorKung Hsu <kung@cygnus>
Tue, 1 Mar 1994 21:39:28 +0000 (21:39 +0000)
committerKung Hsu <kung@cygnus>
Tue, 1 Mar 1994 21:39:28 +0000 (21:39 +0000)
  ChangeLog i386os9k.c Makefile.in

        * i386os9k.c: use new functions bfd_set_error and bfd_get_error.
        * Makefile.in: delete an extra blank.

bfd/ChangeLog
bfd/i386os9k.c

index 3bac0d102f9035bff8802daeb92cea0525e23bee..8f0914095ca69625ab8754dbc65833b7bf682d1e 100644 (file)
@@ -1,5 +1,7 @@
 Tue Mar  1 13:06:53 1994  Kung Hsu  (kung@mexican.cygnus.com)
 
+       * i386os9k.c: use new functions bfd_set_error and bfd_get_error.
+       * Makefile.in: delete an extra blank.
        * configure.in : Add i396os9k_vec.
 
 Mon Feb 28 15:41:01 1994  Kung Hsu  (kung@mexican.cygnus.com)
index ba3e5b1e54bd92dd2f7fbf03314478989676503a..14e836697127a5a6c20718e68e0a57f10d0343d3 100644 (file)
@@ -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;
     }