diff options
author | Alan Modra <amodra@gmail.com> | 2021-03-31 10:39:37 +1030 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2021-03-31 10:49:23 +1030 |
commit | 015dc7e1f8a971692a910e6cfc64faf9216e75c3 (patch) | |
tree | 53f0eb6489d86f4a6b734115c79c4e131af5416c /binutils/rename.c | |
parent | 78933a4ad9ae9c2e274d41e6b3036ea582c47810 (diff) | |
download | binutils-015dc7e1f8a971692a910e6cfc64faf9216e75c3.zip binutils-015dc7e1f8a971692a910e6cfc64faf9216e75c3.tar.gz binutils-015dc7e1f8a971692a910e6cfc64faf9216e75c3.tar.bz2 |
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
Diffstat (limited to 'binutils/rename.c')
-rw-r--r-- | binutils/rename.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/binutils/rename.c b/binutils/rename.c index 861c2b5..9746ef3 100644 --- a/binutils/rename.c +++ b/binutils/rename.c @@ -127,7 +127,7 @@ set_times (const char *destination, const struct stat *statbuf) int smart_rename (const char *from, const char *to, int fromfd, - struct stat *target_stat, bfd_boolean preserve_dates) + struct stat *target_stat, bool preserve_dates) { int ret; |