diff options
author | Alan Modra <amodra@gmail.com> | 2002-11-30 08:39:46 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2002-11-30 08:39:46 +0000 |
commit | b34976b65aea8f33690229600bbf4527ec3118e1 (patch) | |
tree | 6411348664ef81ca2aa2e3ff325116e6e6502edf /bfd/vms-hdr.c | |
parent | 583d52d728c60410c0d39bae68ee536a7b9e7a6c (diff) | |
download | gdb-b34976b65aea8f33690229600bbf4527ec3118e1.zip gdb-b34976b65aea8f33690229600bbf4527ec3118e1.tar.gz gdb-b34976b65aea8f33690229600bbf4527ec3118e1.tar.bz2 |
s/boolean/bfd_boolean/ s/true/TRUE/ s/false/FALSE/. Simplify
comparisons of bfd_boolean vars with TRUE/FALSE. Formatting.
Diffstat (limited to 'bfd/vms-hdr.c')
-rw-r--r-- | bfd/vms-hdr.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/bfd/vms-hdr.c b/bfd/vms-hdr.c index fbeb42e..adbecac 100644 --- a/bfd/vms-hdr.c +++ b/bfd/vms-hdr.c @@ -1,6 +1,7 @@ /* vms-hdr.c -- BFD back-end for VMS/VAX (openVMS/VAX) and EVAX (openVMS/Alpha) files. - Copyright 1996, 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc. + Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002 + Free Software Foundation, Inc. HDR record handling functions EMH record handling functions @@ -408,10 +409,10 @@ _bfd_vms_slurp_eom (abfd, objtype) bfd_set_error (bfd_error_bad_value); return -1; } - PRIV(eom_data).eom_has_transfer = false; + PRIV(eom_data).eom_has_transfer = FALSE; if (PRIV(rec_size) > 10) { - PRIV(eom_data).eom_has_transfer = true; + PRIV(eom_data).eom_has_transfer = TRUE; PRIV(eom_data).eom_b_tfrflg = *(vms_rec + 9); PRIV(eom_data).eom_l_psindx = bfd_getl32 (vms_rec + 12); PRIV(eom_data).eom_l_tfradr = bfd_getl32 (vms_rec + 16); |