From: Behdad Esfahbod Date: Sat, 17 Feb 2018 02:32:57 +0000 (-0800) Subject: [test] Remove unused var X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=04dedec96b76600eecdb739b72814a4a56b270ae;p=platform%2Fupstream%2FlibHarfBuzzSharp.git [test] Remove unused var --- diff --git a/test/api/test-subset-hmtx.c b/test/api/test-subset-hmtx.c index 099b57d..36d7d9e 100644 --- a/test/api/test-subset-hmtx.c +++ b/test/api/test-subset-hmtx.c @@ -37,7 +37,6 @@ static void check_num_hmetrics(hb_face_t *face, uint16_t expected_num_hmetrics) hb_blob_t *hmtx_blob = hb_face_reference_table (face, HB_TAG ('h','m','t','x')); // TODO I sure wish I could just use the hmtx table struct! - unsigned int hmtx_len = hb_blob_get_length(hmtx_blob); unsigned int hhea_len; uint8_t *raw_hhea = (uint8_t *) hb_blob_get_data(hhea_blob, &hhea_len); uint16_t num_hmetrics = (raw_hhea[hhea_len - 2] << 8) + raw_hhea[hhea_len - 1];