From 7acaa3b781da835cdb11dbe523c819feb4eef996 Mon Sep 17 00:00:00 2001 From: Rod Sheeter Date: Thu, 15 Feb 2018 14:28:29 -0800 Subject: [PATCH] [subset] apparently C99 is too much to ask in 2018 --- src/hb-ot-hmtx-table.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hb-ot-hmtx-table.hh b/src/hb-ot-hmtx-table.hh index 41d5489..11cc927 100644 --- a/src/hb-ot-hmtx-table.hh +++ b/src/hb-ot-hmtx-table.hh @@ -111,7 +111,7 @@ struct hmtxvmtx return false; } DEBUG_MSG(SUBSET, nullptr, "%c%c%c%c in src has %d advances, %d lsbs", HB_UNTAG(T::tableTag), _mtx.num_advances, _mtx.num_metrics - _mtx.num_advances); - DEBUG_MSG(SUBSET, nullptr, "%c%c%c%c in dest has %d advances, %d lsbs, %zu bytes", HB_UNTAG(T::tableTag), num_advances, gids.len - num_advances, dest_sz); + DEBUG_MSG(SUBSET, nullptr, "%c%c%c%c in dest has %d advances, %d lsbs, %u bytes", HB_UNTAG(T::tableTag), num_advances, gids.len - num_advances, (unsigned int) dest_sz); const char *source_table = hb_blob_get_data (_mtx.blob, nullptr); // Copy everything over -- 2.7.4