mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-04-16 12:28:48 +02:00
Fix signedness warnings in gobject/tests/properties.c:properties_get_property()
gobject/tests/properties.c: In function ‘properties_get_property’: gobject/tests/properties.c:562:17: error: comparison of integer expressions of different signedness: ‘int’ and ‘long unsigned int’ 562 | for (i = 0; i < G_N_ELEMENTS (test_props); i++) | ^ gobject/tests/properties.c:583:17: error: comparison of integer expressions of different signedness: ‘int’ and ‘long unsigned int’ 583 | for (i = 0; i < G_N_ELEMENTS (test_props); i++) | ^
This commit is contained in:
parent
db70edb6ec
commit
176b204754
@ -554,7 +554,7 @@ properties_get_property (void)
|
|||||||
{ "bar", G_TYPE_INVALID, G_VALUE_INIT },
|
{ "bar", G_TYPE_INVALID, G_VALUE_INIT },
|
||||||
{ "bar", G_TYPE_STRING, G_VALUE_INIT },
|
{ "bar", G_TYPE_STRING, G_VALUE_INIT },
|
||||||
};
|
};
|
||||||
int i;
|
gsize i;
|
||||||
|
|
||||||
g_test_summary ("g_object_get_property() accepts uninitialized, "
|
g_test_summary ("g_object_get_property() accepts uninitialized, "
|
||||||
"initialized, and transformable values");
|
"initialized, and transformable values");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user