[HarfBuzz] harfbuzz: Branch 'master'

Simon Hausmann hausmann at kemper.freedesktop.org
Sat Oct 27 09:59:00 PDT 2007


 src/harfbuzz-shaper.cpp |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 0af99d11c8a95c7426aebf872b878d6f66d12f4a
Author: Marius Bugge Monsen <mmonsen at trolltech.com>
Date:   Sat Oct 27 18:48:52 2007 +0200

    Fix compilation on Solaris
    
    Signed-off-by: Simon Hausmann <shausman at trolltech.com>

diff --git a/src/harfbuzz-shaper.cpp b/src/harfbuzz-shaper.cpp
index 33e4951..91dc312 100644
--- a/src/harfbuzz-shaper.cpp
+++ b/src/harfbuzz-shaper.cpp
@@ -667,7 +667,7 @@ void HB_GetWordBoundaries(const HB_UChar16 *string, hb_uint32 stringLength,
 {
     if (stringLength == 0)
         return;
-    uint brk = HB_GetWordClass(string[0]);
+    unsigned int brk = HB_GetWordClass(string[0]);
     attributes[0].wordBoundary = true;
     for (hb_uint32 i = 1; i < stringLength; ++i) {
         if (!attributes[i].charStop) {



More information about the HarfBuzz mailing list