[subset] fix int type for blob length in hb-subset-test.h

This commit is contained in:
Rod Sheeter 2018-02-16 06:26:02 -08:00
parent be0a01a676
commit 0bb2d7ac12
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ hb_subset_test_check (hb_face_t *expected,
{
hb_blob_t *glyf_expected_blob = hb_face_reference_table (expected, table);
hb_blob_t *glyf_actual_blob = hb_face_reference_table (actual, table);
int expected_length, actual_length;
unsigned int expected_length, actual_length;
g_assert_cmpmem(hb_blob_get_data (glyf_expected_blob, &expected_length), expected_length,
hb_blob_get_data (glyf_actual_blob, &actual_length), actual_length);
hb_blob_destroy (glyf_actual_blob);