[HarfBuzz] harfbuzz: Branch 'master'

Behdad Esfahbod behdad at kemper.freedesktop.org
Sat Dec 1 04:38:38 UTC 2018


 src/hb-ot-cff-common.hh |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit e8860fdcaa69e3452edd903f78599bc8fa9d109c
Author: Behdad Esfahbod <behdad at behdad.org>
Date:   Fri Nov 30 23:38:24 2018 -0500

    Fix more warning

diff --git a/src/hb-ot-cff-common.hh b/src/hb-ot-cff-common.hh
index a83435d4..e824dae3 100644
--- a/src/hb-ot-cff-common.hh
+++ b/src/hb-ot-cff-common.hh
@@ -233,7 +233,7 @@ struct CFFIndex
   inline unsigned int max_offset (void) const
   {
     unsigned int max = 0;
-    for (unsigned int i = 0; i < count + 1; i++)
+    for (unsigned int i = 0; i < count + 1u; i++)
     {
       unsigned int off = offset_at (i);
       if (off > max) max = off;


More information about the HarfBuzz mailing list