From: Behdad Esfahbod Date: Tue, 14 May 2013 19:30:55 +0000 (-0400) Subject: Bug 64476 - Typo in hb_set_t.get_min() X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fa3d0a0ce60a9fcf2b7f906dec916463b1319eda;p=platform%2Fupstream%2FlibHarfBuzzSharp.git Bug 64476 - Typo in hb_set_t.get_min() Fixes previous commit's test. --- diff --git a/src/hb-set-private.hh b/src/hb-set-private.hh index d59f248..adfa88f 100644 --- a/src/hb-set-private.hh +++ b/src/hb-set-private.hh @@ -297,7 +297,7 @@ struct hb_set_t { for (unsigned int i = 0; i < ELTS; i++) if (elts[i]) - for (unsigned int j = 0; i < BITS; j++) + for (unsigned int j = 0; j < BITS; j++) if (elts[i] & (1 << j)) return i * BITS + j; return SENTINEL;