* aoutx.h (translate_to_native_sym_flags), bfd-in.h (bfd_ec),
[deliverable/binutils-gdb.git] / bfd / aoutx.h
index 03665907a4239ae1c8ee292ef36decaf75e91ba9..41107193dad30a8b33ae3d60d5b1ba6fdbb95799 100644 (file)
@@ -1331,14 +1331,14 @@ DEFUN(translate_to_native_sym_flags,(sym_pointer, cache_ptr, abfd),
   else if (bfd_get_output_section(cache_ptr) == NULL) {
     /* Protect the bfd_is_com_section call.
        This case occurs, e.g., for the *DEBUG* section of a COFF file.  */
-    bfd_error = bfd_error_nonrepresentable_section;
+    bfd_error = nonrepresentable_section;
     return false;
   }
   else if (bfd_is_com_section (bfd_get_output_section (cache_ptr))) {
     sym_pointer->e_type[0] = (N_UNDF | N_EXT);
   }
   else {
-    bfd_error = bfd_error_nonrepresentable_section;
+    bfd_error = nonrepresentable_section;
     return false;
   }
 
This page took 0.023124 seconds and 4 git commands to generate.