(iconv): Fix typo.
authorUlrich Drepper <drepper@redhat.com>
Fri, 21 Apr 2000 16:23:45 +0000 (16:23 +0000)
committerUlrich Drepper <drepper@redhat.com>
Fri, 21 Apr 2000 16:23:45 +0000 (16:23 +0000)
iconv/iconv.c

index c7ff73c..3fafc88 100644 (file)
@@ -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);