diff options
author | Alan Modra <amodra@gmail.com> | 2021-03-29 09:47:16 +1030 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2021-03-29 11:22:21 +1030 |
commit | 1be305ffcd43050184097a8f41445c85a4b1a411 (patch) | |
tree | 988d1122fc51da06afe628a09152f1fbbc18527e /binutils/windint.h | |
parent | 3d7d6c1b507b4a5c4b991dd4158c35d91539aa8e (diff) | |
download | gdb-1be305ffcd43050184097a8f41445c85a4b1a411.zip gdb-1be305ffcd43050184097a8f41445c85a4b1a411.tar.gz gdb-1be305ffcd43050184097a8f41445c85a4b1a411.tar.bz2 |
binutils int vs bfd_boolean fixes
* objdump.c (process_links): Use type int.
* readelf.c (request_dump): Don't increment do_dump, set it.
* windint.h (target_is_bigendian): Use type bfd_boolean.
* windmc.c (target_is_bigendian): Likewise.
* windres.c (target_is_bigendian): Likewise.
Diffstat (limited to 'binutils/windint.h')
-rw-r--r-- | binutils/windint.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/binutils/windint.h b/binutils/windint.h index 42c0bef..b41a2ca 100644 --- a/binutils/windint.h +++ b/binutils/windint.h @@ -1063,7 +1063,7 @@ struct __attribute__ ((__packed__)) bin_toolbar }; #define BIN_TOOLBAR_SIZE 12 -extern int target_is_bigendian; +extern bfd_boolean target_is_bigendian; typedef struct windres_bfd { |