diff options
author | Alan Modra <amodra@gmail.com> | 2023-01-06 19:34:15 +1030 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2023-01-06 21:06:15 +1030 |
commit | 10df41b188b2692b6bc8c36d4003e0f8790d1f1b (patch) | |
tree | 8e35758d1b7208320c9808601492948b381be905 /bfd/libcoff-in.h | |
parent | 22a95e1a37aff28238e9d40bbe4441aa554a14c6 (diff) | |
download | binutils-gdb-10df41b188b2692b6bc8c36d4003e0f8790d1f1b.tar.gz |
Tidy pe flag in coff_data
Make it a bool, use obj_pe accessor everywhere.
Diffstat (limited to 'bfd/libcoff-in.h')
-rw-r--r-- | bfd/libcoff-in.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/libcoff-in.h b/bfd/libcoff-in.h index d27e5d4394f..a0d286d37f4 100644 --- a/bfd/libcoff-in.h +++ b/bfd/libcoff-in.h @@ -101,7 +101,7 @@ typedef struct coff_tdata bool go32; /* Is this a PE format coff file? */ - int pe; + bool pe; /* Copy of some of the f_flags bits in the COFF filehdr structure, used by ARM code. */ |