diff options
author | Tom Rix <trix@redhat.com> | 2002-05-18 13:13:12 +0000 |
---|---|---|
committer | Tom Rix <trix@redhat.com> | 2002-05-18 13:13:12 +0000 |
commit | a58d9c34ef63886b2bce7b7be0471e0bad3aa362 (patch) | |
tree | b6bab19eb4fc1b4b810b6b6e5e36ce62e4a920bb /bfd/coff64-rs6000.c | |
parent | 411863a44d47767443870273ecd7d6f51c84fcac (diff) | |
download | gdb-a58d9c34ef63886b2bce7b7be0471e0bad3aa362.zip gdb-a58d9c34ef63886b2bce7b7be0471e0bad3aa362.tar.gz gdb-a58d9c34ef63886b2bce7b7be0471e0bad3aa362.tar.bz2 |
Fix C_FILE auxent.
Diffstat (limited to 'bfd/coff64-rs6000.c')
-rw-r--r-- | bfd/coff64-rs6000.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/coff64-rs6000.c b/bfd/coff64-rs6000.c index 5ed5be4..d13fa0f 100644 --- a/bfd/coff64-rs6000.c +++ b/bfd/coff64-rs6000.c @@ -424,7 +424,7 @@ _bfd_xcoff64_swap_aux_out (abfd, inp, type, class, indx, numaux, extp) switch (class) { case C_FILE: - if (ext->x_file.x_n.x_zeroes == 0) + if (in->x_file.x_n.x_zeroes == 0) { H_PUT_32 (abfd, 0, ext->x_file.x_n.x_zeroes); H_PUT_32 (abfd, in->x_file.x_n.x_offset, ext->x_file.x_n.x_offset); |