diff options
Diffstat (limited to 'sim/common/hw-properties.c')
-rw-r--r-- | sim/common/hw-properties.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/common/hw-properties.c b/sim/common/hw-properties.c index 295cf2a..3d2b5cd 100644 --- a/sim/common/hw-properties.c +++ b/sim/common/hw-properties.c @@ -368,7 +368,7 @@ hw_add_boolean_property (struct hw *me, const char *property, int boolean) { - signed32 new_boolean = (boolean ? -1 : 0); + int32_t new_boolean = (boolean ? -1 : 0); hw_add_property (me, property, boolean_property, &new_boolean, sizeof (new_boolean), &new_boolean, sizeof (new_boolean), |