[HarfBuzz] harfbuzz: Branch 'master'
Behdad Esfahbod
behdad at kemper.freedesktop.org
Tue Apr 16 13:11:20 PDT 2013
src/hb-private.hh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 2b712bba3f7c459653737dfa2f7d26f17f3b9f64
Author: Behdad Esfahbod <behdad at behdad.org>
Date: Tue Apr 16 16:11:09 2013 -0400
Fix typo in unused macro
diff --git a/src/hb-private.hh b/src/hb-private.hh
index ff1e85d..f1a9c3a 100644
--- a/src/hb-private.hh
+++ b/src/hb-private.hh
@@ -517,7 +517,7 @@ static inline uint32_t hb_uint32_swap (const uint32_t v)
#define hb_be_uint32_get(v) (uint32_t) ((v[0] << 24) + (v[1] << 16) + (v[2] << 8) + v[3])
#define hb_be_uint32_eq(a,b) (a[0] == b[0] && a[1] == b[1] && a[2] == b[2] && a[3] == b[3])
-#define hb_be_uint24_put(v,V) HB_STMT_START { v[0] = (V>>16); v[1] = (V>>8); v[2] (V); } HB_STMT_END
+#define hb_be_uint24_put(v,V) HB_STMT_START { v[0] = (V>>16); v[1] = (V>>8); v[2] = (V); } HB_STMT_END
#define hb_be_uint24_get(v) (uint32_t) ((v[0] << 16) + (v[1] << 8) + v[2])
#define hb_be_uint24_eq(a,b) (a[0] == b[0] && a[1] == b[1] && a[2] == b[2])
More information about the HarfBuzz
mailing list