diff options
author | Tom Tromey <tom@tromey.com> | 2022-06-01 13:00:11 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2022-08-04 13:28:04 -0600 |
commit | 0655397b573d93fe543d6ec4bd0e00e8b3ff5d81 (patch) | |
tree | 9be09f92e48ef1995212a41d213fca7d5d0d5485 /gdb/gdbarch.c | |
parent | 367dda85965bc03968edb43b2c86a2c25d3e846b (diff) | |
download | gdb-0655397b573d93fe543d6ec4bd0e00e8b3ff5d81.zip gdb-0655397b573d93fe543d6ec4bd0e00e8b3ff5d81.tar.gz gdb-0655397b573d93fe543d6ec4bd0e00e8b3ff5d81.tar.bz2 |
Use bool in gdbarch
This changes gdbarch to use bool for initialized_p.
Diffstat (limited to 'gdb/gdbarch.c')
-rw-r--r-- | gdb/gdbarch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/gdbarch.c b/gdb/gdbarch.c index d4ea5d3..800d919 100644 --- a/gdb/gdbarch.c +++ b/gdb/gdbarch.c @@ -30,7 +30,7 @@ struct gdbarch { /* Has this architecture been fully initialized? */ - int initialized_p; + bool initialized_p; /* An obstack bound to the lifetime of the architecture. */ struct obstack *obstack; |