diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-06-15 20:28:35 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-06-16 01:05:10 -0400 |
commit | 597656964120f19c06737eee3a530baf7aa9323a (patch) | |
tree | ef78bdf1d4acda0ddb08772f66469102662b2396 /sim/ppc/device.h | |
parent | 430456e34753ac705a047c886eb4f73cf2906dfc (diff) | |
download | gdb-597656964120f19c06737eee3a530baf7aa9323a.zip gdb-597656964120f19c06737eee3a530baf7aa9323a.tar.gz gdb-597656964120f19c06737eee3a530baf7aa9323a.tar.bz2 |
sim: ppc: change bool variable name to boolean
This is a reserved type with stdbool.h.
Diffstat (limited to 'sim/ppc/device.h')
-rw-r--r-- | sim/ppc/device.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/ppc/device.h b/sim/ppc/device.h index 3533587..1bc0008 100644 --- a/sim/ppc/device.h +++ b/sim/ppc/device.h @@ -280,7 +280,7 @@ INLINE_DEVICE\ (void) device_add_boolean_property (device *me, const char *property, - int bool); + int boolean); INLINE_DEVICE\ (int) device_find_boolean_property |