]> git.sur5r.net Git - openldap/commitdiff
Error in exclusion set macros
authorStig Venaas <venaas@openldap.org>
Sat, 22 Dec 2001 17:17:52 +0000 (17:17 +0000)
committerStig Venaas <venaas@openldap.org>
Sat, 22 Dec 2001 17:17:52 +0000 (17:17 +0000)
libraries/liblunicode/ucdata/ucgendat.c

index 09107ac0b05ccfdd031630f3a13a507643478d76..e7a9a563e7a77567842bea3f45a163e350dedc3e 100644 (file)
@@ -112,8 +112,8 @@ static unsigned long decomps_size;
 /*
  * Composition exclusion table stuff.
  */
-#define COMPEX_SET(c) (compexs[(c) >> 15] |= (1 << ((c) & 31)))
-#define COMPEX_TEST(c) (compexs[(c) >> 15] & (1 << ((c) & 31)))
+#define COMPEX_SET(c) (compexs[(c) >> 5] |= (1 << ((c) & 31)))
+#define COMPEX_TEST(c) (compexs[(c) >> 5] & (1 << ((c) & 31)))
 static unsigned long compexs[2048];
 
 /*