From 9faee63034d3965735bd6362c0beeca1613bd771 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Thu, 6 Aug 2009 10:24:49 -0400 Subject: [PATCH] [HB] Minor --- src/hb-private.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hb-private.h b/src/hb-private.h index 55bedada..ab3af855 100644 --- a/src/hb-private.h +++ b/src/hb-private.h @@ -138,7 +138,7 @@ _hb_popcount32 (uint32_t mask) #if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) return __builtin_popcount (mask); #else - register int y; + register uint32_t y; y = (mask >> 1) &033333333333; y = mask - y - ((y >>1) & 033333333333); -- GitLab