Fix typo.
authorUlrich Drepper <drepper@redhat.com>
Tue, 6 Jun 2000 16:59:49 +0000 (16:59 +0000)
committerUlrich Drepper <drepper@redhat.com>
Tue, 6 Jun 2000 16:59:49 +0000 (16:59 +0000)
iconvdata/iso-2022-cn.c
iconvdata/iso-2022-jp.c

index 69f5e17..c224ee7 100644 (file)
@@ -272,7 +272,7 @@ enum
          {                                                                   \
            *outptr++ = SI;                                                   \
            set = ASCII_set;                                                  \
-           if (NEED_LENGTH_TEST && __builtin_expet (outptr == outend, 0))    \
+           if (NEED_LENGTH_TEST && __builtin_expect (outptr == outend, 0))   \
              {                                                               \
                result = __GCONV_FULL_OUTPUT;                                 \
                break;                                                        \
@@ -319,7 +319,7 @@ enum
                else                                                          \
                  written = ucs4_to_gb2312 (ch, buf, 2);                      \
                                                                              \
-               if (__builin_expect (written, 0) != __UNKNOWN_10646_CHAR)     \
+               if (__builtin_expect (written, 0) != __UNKNOWN_10646_CHAR)    \
                  /* Oh well, then switch SO.  */                             \
                  used = GB2312_set + CNS11643_1_set - set;                   \
                else                                                          \
index 25ca75c..8fc67b2 100644 (file)
@@ -811,7 +811,7 @@ gconv_end (struct __gconv_step *data)
                                /* We use GB 2312.  */                        \
                                if (NEED_LENGTH_TEST                          \
                                    && __builtin_expect (outptr + 3 > outend, \
-                                                        0)                   \
+                                                        0))                  \
                                  {                                           \
                                    result = __GCONV_FULL_OUTPUT;             \
                                    break;                                    \