[tests] warning: unused variable 'num_glyphs'

This commit is contained in:
Khaled Hosny 2020-10-17 21:57:27 +02:00
parent e25aa49a1b
commit c2cdcd4901
1 changed files with 3 additions and 3 deletions

View File

@ -880,7 +880,7 @@ test_buffer_serialize_deserialize (void)
for (i = 0; i < G_N_ELEMENTS (serialization_tests); i++) for (i = 0; i < G_N_ELEMENTS (serialization_tests); i++)
{ {
unsigned int num_glyphs, consumed; unsigned int consumed;
char round_trip[1024]; char round_trip[1024];
hb_bool_t retval; hb_bool_t retval;
@ -895,7 +895,7 @@ test_buffer_serialize_deserialize (void)
// Expected parse failure, got one, don't round-trip // Expected parse failure, got one, don't round-trip
if (test->success != 0) if (test->success != 0)
{ {
num_glyphs = hb_buffer_get_length (b); unsigned int num_glyphs = hb_buffer_get_length (b);
g_assert_cmpint (num_glyphs, ==, test->num_items); g_assert_cmpint (num_glyphs, ==, test->num_items);
hb_buffer_serialize_unicode (b, 0, num_glyphs, round_trip, hb_buffer_serialize_unicode (b, 0, num_glyphs, round_trip,
@ -909,7 +909,7 @@ test_buffer_serialize_deserialize (void)
} }
char test[1024]; char test[1024];
unsigned int num_glyphs, consumed; unsigned int consumed;
hb_buffer_t *indeterminate = hb_buffer_get_empty (); hb_buffer_t *indeterminate = hb_buffer_get_empty ();
hb_buffer_serialize (indeterminate, 0, (unsigned) -1, hb_buffer_serialize (indeterminate, 0, (unsigned) -1,
test, sizeof(test), &consumed, NULL, test, sizeof(test), &consumed, NULL,