diff options
author | Christian Biesinger <cbiesinger@google.com> | 2019-12-02 12:33:38 -0600 |
---|---|---|
committer | Christian Biesinger <cbiesinger@google.com> | 2019-12-02 12:35:48 -0600 |
commit | 638d85bce02264cd6180a240a1d033fb1ea58e26 (patch) | |
tree | 29b29156021ce0b964508fb11b8ea8bc0e6b15c4 /gdb/aix-thread.c | |
parent | 7532a164d5391fe4832da9f7e492dd0dd6da6dce (diff) | |
download | gdb-638d85bce02264cd6180a240a1d033fb1ea58e26.zip gdb-638d85bce02264cd6180a240a1d033fb1ea58e26.tar.gz gdb-638d85bce02264cd6180a240a1d033fb1ea58e26.tar.bz2 |
Change type of debug_aix_thread to bool
This fixes AIX build breakage from commit
491144b5e21bbfd41969c175aebb663976f59058
Thanks to Sangamesh Mallayya for pointing this out to me.
gdb/ChangeLog:
2019-12-02 Christian Biesinger <cbiesinger@google.com>
* aix-thread.c (debug_aix_thread): Change type to bool.
Change-Id: Ie7b2eab97b75b48067ef77e414e7510d1f79a525
Diffstat (limited to 'gdb/aix-thread.c')
-rw-r--r-- | gdb/aix-thread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/aix-thread.c b/gdb/aix-thread.c index ffa3352..35b77fe 100644 --- a/gdb/aix-thread.c +++ b/gdb/aix-thread.c @@ -61,7 +61,7 @@ extern int getthrds (pid_t, struct thrdsinfo64 *, int, tid_t *, int); #endif /* Whether to emit debugging output. */ -static int debug_aix_thread; +static bool debug_aix_thread; /* In AIX 5.1, functions use pthdb_tid_t instead of tid_t. */ #ifndef PTHDB_VERSION_3 |