On Monday, Feb 17, 2003, at 05:41 Asia/Tokyo, Jarkko Hietaniemi wrote: > On Mon, Feb 17, 2003 at 05:27:06AM +0900, Dan Kogai wrote: >> On Monday, Feb 17, 2003, at 04:33 Asia/Tokyo, Jarkko Hietaniemi wrote: >>> - U8 *trm = term ? SvPV(term, trmlen) : NULL; >>> + U8 *trm = term ? (U8*) SvPV(term, trmlen) : NULL; >> >> Kiitos. Typecast and applied. > > It's a pity gcc doesn't warn about such problems without -pedantic. > AIX and Tru64 compilers warn; VMS compilers find it a fatal error. GCC does have -funsigned-char, however. Does perl source use signed char anywhere? If not, we may consider using it in hints file. So far as I see, > % grep unsigned-char ~/work/perl-current/hints/* > % it's not used. (Unsigned U8*)Dan = "the Encode Maintainer";