On Fri, Oct 31, 2008 at 11:56:26AM +0100, Mario 'BitKoenig' Holbe wrote: > on i386 I have no way to printf long long values: ... > This is most likely something to forward upstream.
...or it's not? First, I thought it has something to do with how perl
stores integers, but it seems not to be that general...
[EMAIL PROTECTED]:/home/holbe% perl -e '$a=11171763644; print "$a\n"'
11171763644
[EMAIL PROTECTED]:/home/holbe% perl -e '$a=11171763644; $a=int($a); print
"$a\n"'
11171763644
[EMAIL PROTECTED]:/home/holbe% perl -e '$a=11171763644; printf("%lli\n", $a)'
-1
Seems to be an isolated printf issue only...
Mario
--
The problem in the world today is communication. Too much communication.
-- Homer J. Simpson
signature.asc
Description: Digital signature

