summaryrefslogtreecommitdiff
path: root/tests/gimarshallingtests.c
diff options
context:
space:
mode:
authorPhilip Chimento <philip@endlessm.com>2018-03-11 22:36:51 -0700
committerPhilip Chimento <philip.chimento@gmail.com>2018-03-31 00:45:51 +0000
commitf6bcc7d27fa4fb66381564fc4cc839108967e3b0 (patch)
tree2b48065c16cdf4b5abbe87d53573824b3921f0c7 /tests/gimarshallingtests.c
parentb6066113b9472c0726c37f0cc21e23791f9d275f (diff)
downloadgobject-introspection-f6bcc7d27fa4fb66381564fc4cc839108967e3b0.tar.gz
tests: Fix signed-ness of variable
This will otherwise warn.
Diffstat (limited to 'tests/gimarshallingtests.c')
-rw-r--r--tests/gimarshallingtests.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/gimarshallingtests.c b/tests/gimarshallingtests.c
index a231493d..44a4ab30 100644
--- a/tests/gimarshallingtests.c
+++ b/tests/gimarshallingtests.c
@@ -1413,7 +1413,7 @@ gi_marshalling_tests_array_uint64_in (const guint64 *ints, gint length)
void
gi_marshalling_tests_array_unichar_in (const gunichar *chars, gint length)
{
- unsigned ix;
+ int ix;
static const gunichar expected[] = GI_MARSHALLING_TESTS_CONSTANT_UCS4;
g_assert_cmpint (length, ==, 12);
for (ix = 0; ix < length; ix++)