diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-04-21 16:23:45 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-04-21 16:23:45 +0000 |
commit | ec92d937468b45df5efa4b00502e0c140119db0c (patch) | |
tree | c0deb2cf6c27ab9cd5307d6d318d3eecd55541ee /iconv/iconv.c | |
parent | a711dd4ba8f2c71a260a3f7539c0e86175f97a21 (diff) | |
download | glibc-ec92d937468b45df5efa4b00502e0c140119db0c.zip glibc-ec92d937468b45df5efa4b00502e0c140119db0c.tar.gz glibc-ec92d937468b45df5efa4b00502e0c140119db0c.tar.bz2 |
(iconv): Fix typo.
Diffstat (limited to 'iconv/iconv.c')
-rw-r--r-- | iconv/iconv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/iconv/iconv.c b/iconv/iconv.c index c7ff73c..3fafc88 100644 --- a/iconv/iconv.c +++ b/iconv/iconv.c @@ -37,7 +37,7 @@ iconv (iconv_t cd, const char **inbuf, size_t *inbytesleft, char **outbuf, size_t converted; int result; - if (__gconv_builtin (inbuf == NULL || *inbuf == NULL), 0) + if (__builtin_expect (inbuf == NULL || *inbuf == NULL, 0)) { if (outbuf == NULL || *outbuf == NULL) result = __gconv (gcd, NULL, NULL, NULL, NULL, &converted); |