* tuiWin.c (tuiStrDup): Remove, replaced by xstrdup.
[deliverable/binutils-gdb.git] / bfd / coff-i960.c
index 58b4e915ea233c5ed5beed963c7c0e94610b909b..53bb03aae2a38891d82b53e333862fe9ad34a968 100644 (file)
@@ -1,5 +1,5 @@
 /* BFD back-end for Intel 960 COFF files.
-   Copyright (C) 1990, 91, 92, 93, 94, 95, 97, 98, 1999
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1997, 1999, 2000
    Free Software Foundation, Inc.
    Written by Cygnus Support.
 
@@ -146,7 +146,7 @@ optcall_callback (abfd, reloc_entry, symbol_in, data,
           to the correct location.  */
        {
          union internal_auxent *aux = &((cs->native+2)->u.auxent);
-         int word = bfd_get_32(abfd, (bfd_byte *)data + reloc_entry->address);
+         int word = bfd_get_32 (abfd, (bfd_byte *)data + reloc_entry->address);
          int olf = (aux->x_bal.x_balntry - cs->native->u.syment.n_value);
          BFD_ASSERT(cs->native->u.syment.n_numaux==2);
 
@@ -156,7 +156,7 @@ optcall_callback (abfd, reloc_entry, symbol_in, data,
             sym and auxents untouched, so the delta between the two
             is the offset of the bal entry point.  */
          word = ((word +  olf)  & BAL_MASK) | BAL;
-         bfd_put_32(abfd, word, (bfd_byte *) data + reloc_entry->address);
+         bfd_put_32 (abfd, word, (bfd_byte *) data + reloc_entry->address);
        }
        result = bfd_reloc_ok;
        break;
This page took 0.023455 seconds and 4 git commands to generate.