]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blobdiff - sim/common/hw-properties.c
sim: common: migrate to standard uintXX_t types
[thirdparty/binutils-gdb.git] / sim / common / hw-properties.c
index 295cf2a3e0ac4744962c7f8c2792719b08bc7eaa..3d2b5cdda7aa68c59d4a28e6902358a705ae3996 100644 (file)
@@ -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),