diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2000-11-20 19:05:12 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@codesourcery.com> | 2000-11-20 19:05:12 +0000 |
commit | beb0d161cdeb8dddb7c49929ce8f415b45235759 (patch) | |
tree | cf4a82a61e745679ca32ffbf2dbd27736213f674 /bfd/aout-encap.c | |
parent | b57d7d21ef3c86b335d93b8942bb1ee50c2c9a9e (diff) | |
download | gdb-beb0d161cdeb8dddb7c49929ce8f415b45235759.zip gdb-beb0d161cdeb8dddb7c49929ce8f415b45235759.tar.gz gdb-beb0d161cdeb8dddb7c49929ce8f415b45235759.tar.bz2 |
2000-11-20 Kazu Hirata <kazu@hxi.com>
* aix386-core.c: Fix formatting.
* aout-adobe.c: Likewise.
* aout-arm.c: Likewise.
* aout-encap.c: Likewise.
* aout-ns32k.c: Likewise.
* aout-target.h: Likewise.
* aout-tic30.c: Likewise.
* aoutf1.h: Likewise.
* aoutx.h: Likewise.
* archive.c: Likewise.
Diffstat (limited to 'bfd/aout-encap.c')
-rw-r--r-- | bfd/aout-encap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bfd/aout-encap.c b/bfd/aout-encap.c index d6650a9..5f8a511 100644 --- a/bfd/aout-encap.c +++ b/bfd/aout-encap.c @@ -58,7 +58,7 @@ encap_object_p (abfd) if (coff_magic != COFF_MAGIC) return 0; /* Not an encap coff file */ - __header_offset_temp==COFF_MAGIC ? sizeof(struct coffheader) : 0) + __header_offset_temp==COFF_MAGIC ? sizeof (struct coffheader) : 0) (fseek ((f), HEADER_OFFSET((f)), 1)) magic = bfd_h_get_32 (abfd, magicbuf); @@ -72,7 +72,7 @@ encap_object_p (abfd) bfd_set_error (bfd_error_wrong_format); return 0; } - NAME(aout,swap_exec_header_in)(abfd, &exec_bytes, &exec); + NAME(aout,swap_exec_header_in) (abfd, &exec_bytes, &exec); return aout_32_some_aout_object_p (abfd, &exec, encap_realcallback); } @@ -84,7 +84,7 @@ encap_real_callback (abfd) { struct internal_exec *execp = exec_hdr (abfd); - MY(callback)(abfd, execp); + MY(callback) (abfd, execp); /* If we have a coff header, it can give us better values for text_start and exec_data_start. This is particularly useful |