From f1971a217424bd6db5c7072ba5cf197f318d4e47 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Tue, 5 Jun 2012 13:04:20 -0400 Subject: [PATCH] Fix warnings --- src/indic.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/indic.cc b/src/indic.cc index e00311d8d..3b440761e 100644 --- a/src/indic.cc +++ b/src/indic.cc @@ -41,6 +41,6 @@ main (void) hb_codepoint_t a, b; if (!hb_unicode_decompose (funcs, u, &a, &b)) - printf ("U+%04X\n", u); + printf ("U+%04X %x %x\n", u, category, position); } }