summaryrefslogtreecommitdiff
path: root/Build/source/libs/harfbuzz/harfbuzz-src/src/test-ot-meta.cc
diff options
context:
space:
mode:
authorAkira Kakuto <kakuto@fuk.kindai.ac.jp>2023-02-12 04:02:23 +0000
committerAkira Kakuto <kakuto@fuk.kindai.ac.jp>2023-02-12 04:02:23 +0000
commit68b944ccd2bbecda0f13fbc7f89940651052fb5d (patch)
tree5b6eb646bd02c0121c23f03038d98efb4e3978f8 /Build/source/libs/harfbuzz/harfbuzz-src/src/test-ot-meta.cc
parent95839e60a0c4b132fff96a310d15366cddf02a64 (diff)
harfbuzz 7.0.0
git-svn-id: svn://tug.org/texlive/trunk@65798 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs/harfbuzz/harfbuzz-src/src/test-ot-meta.cc')
-rw-r--r--Build/source/libs/harfbuzz/harfbuzz-src/src/test-ot-meta.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/Build/source/libs/harfbuzz/harfbuzz-src/src/test-ot-meta.cc b/Build/source/libs/harfbuzz/harfbuzz-src/src/test-ot-meta.cc
index 7cf69dbcc34..6daacc47d33 100644
--- a/Build/source/libs/harfbuzz/harfbuzz-src/src/test-ot-meta.cc
+++ b/Build/source/libs/harfbuzz/harfbuzz-src/src/test-ot-meta.cc
@@ -54,9 +54,9 @@ main (int argc, char **argv)
for (unsigned i = 0; i < count; ++i)
{
hb_blob_t *entry = hb_ot_meta_reference_entry (face, tags[i]);
- printf ("%c%c%c%c, size: %d: %.*s\n",
+ printf ("%c%c%c%c, size: %u: %.*s\n",
HB_UNTAG (tags[i]), hb_blob_get_length (entry),
- hb_blob_get_length (entry), hb_blob_get_data (entry, nullptr));
+ (int) hb_blob_get_length (entry), hb_blob_get_data (entry, nullptr));
hb_blob_destroy (entry);
}
free (tags);