diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-01-23 09:24:16 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-01-23 09:24:16 +0000 |
commit | 786731fc3c71df6dff871c14a28d1a8e997d3f2d (patch) | |
tree | 2f6d958b998b3941bace39d22899c46d501e64fe /iconv/gconv_simple.c | |
parent | 0ebfb8d7aafa1a2b18e749ad7840325f0565045b (diff) | |
download | glibc-786731fc3c71df6dff871c14a28d1a8e997d3f2d.zip glibc-786731fc3c71df6dff871c14a28d1a8e997d3f2d.tar.gz glibc-786731fc3c71df6dff871c14a28d1a8e997d3f2d.tar.bz2 |
Fix typo.
Patch by Bruno Haible <haible@ilog.fr>.
Diffstat (limited to 'iconv/gconv_simple.c')
-rw-r--r-- | iconv/gconv_simple.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/iconv/gconv_simple.c b/iconv/gconv_simple.c index e56c5e7..6acdd5d 100644 --- a/iconv/gconv_simple.c +++ b/iconv/gconv_simple.c @@ -320,7 +320,7 @@ internal_ucs4_loop (const unsigned char **inptrp, const unsigned char *inend, if (i < cnt || (cnt > 2 && (ch >> (5 * cnt - 4)) == 0)) \ { \ /* This is an illegal encoding. */ \ - result = GCONV_ILLEGAL_INPUT; \ + result = __GCONV_ILLEGAL_INPUT; \ break; \ } \ \ |