On 02/26/12 10:58 pm, Erik de Castro Lopo wrote:
> If you're interested in pursuing this please try changing line 175
> of src/share/utf8/iconvert.c from:
> 
> k = iconv(cd2, 0, 0, &ob, &obl);
> 
> to:
> 
> k = iconv(cd2, 0, 0, (const char**) &ob, &obl);
> 
> and seeing if there is a warning with the replacement.

Shouldn't that be changing
    k = iconv(cd2, &ib, &ibl, &ob, &obl);
to
    k = iconv(cd2,(const char**) &ib, &ibl, &ob, &obl);

which here gets rid of the warning on line 175.
_______________________________________________
flac-dev mailing list
flac-dev@xiph.org
http://lists.xiph.org/mailman/listinfo/flac-dev

Reply via email to