(iconv): Fix typo.

This commit is contained in:
Ulrich Drepper 2000-04-21 16:23:45 +00:00
parent a711dd4ba8
commit ec92d93746
1 changed files with 1 additions and 1 deletions

View 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);