]> mj.ucw.cz Git - libucw.git/commitdiff
Minor optimization of GET_TAGGED_CHAR.
authorMartin Mares <mj@ucw.cz>
Sun, 13 May 2001 15:35:24 +0000 (15:35 +0000)
committerMartin Mares <mj@ucw.cz>
Sun, 13 May 2001 15:35:24 +0000 (15:35 +0000)
lib/index.h

index 733995a1cf2b98ccae9ca738668ea54ad2c2ba42..c102be10979c4136a4569e04b060c7cb4d6513f2 100644 (file)
@@ -117,7 +117,7 @@ fp_hash(struct fingerprint *fp)
 #define GET_TAGGED_CHAR(p,u) do {                              \
   u = *p;                                                      \
   if (u >= 0xc0)                                               \
-    GET_UTF8(p,u);                                             \
+    GET_UTF8_CHAR(p,u);                                                \
   else if (u >= 0x80)                                          \
     {                                                          \
       p++;                                                     \