outlen should be int * in out_utf8.

This commit is contained in:
Dr. Stephen Henson 2003-08-21 12:31:17 +00:00
parent 9cc513a000
commit 3b07c32fe7

View File

@ -296,7 +296,7 @@ static int in_utf8(unsigned long value, void *arg)
static int out_utf8(unsigned long value, void *arg)
{
long *outlen;
int *outlen;
outlen = arg;
*outlen += UTF8_putc(NULL, -1, value);
return 1;