mirror of git://sourceware.org/git/glibc.git
(iconv): Fix typo.
This commit is contained in:
parent
a711dd4ba8
commit
ec92d93746
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue