Re: FmtDefault-Warning in Spread***-ParseExcel



In article
<d321ee9902d6c0a55d58256993c2baac@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx>,
Pit <pharrendorf@xxxxxxxxxx> wrote:

> Hi all,
>
> if using the module Spread***-ParseExcel I always get the following
> message:
>
> Character in 'C' format wrapped in pack at
> C:/Perl/site/lib/Spread***/ParseExcel/FmtDefault.pm line 68.
>
> the programm works fine, but why appears this message ??

>From perldiag:

Character in "C" format wrapped in pack
(W pack) You said

pack("C", $x)

where $x is either less than 0 or more than 255; the "C" format is
only for encoding native operating system characters (ASCII,
EBCDIC, and so on) and not for Unicode characters, so Perl behaved
as if you meant

pack("C", $x & 255)

If you actually want to pack Unicode codepoints, use the "U" format
instead.

Posted Via Usenet.com Premium Usenet Newsgroup Services
----------------------------------------------------------
** SPEED ** RETENTION ** COMPLETION ** ANONYMITY **
----------------------------------------------------------
http://www.usenet.com
.