Package: perl Version: 5.10.0-16 Hello,
on i386 I have no way to printf long long values:
[EMAIL PROTECTED]:/home/holbe% perl -e 'printf("%i\n", 11171763644)'
-1
[EMAIL PROTECTED]:/home/holbe% perl -e 'printf("%li\n", 11171763644)'
-1
[EMAIL PROTECTED]:/home/holbe% perl -e 'printf("%lli\n", 11171763644)'
-1
[EMAIL PROTECTED]:/home/holbe% perl -e 'printf("%u\n", 11171763644)'
4294967295
[EMAIL PROTECTED]:/home/holbe% perl -e 'printf("%lu\n", 11171763644)'
4294967295
[EMAIL PROTECTED]:/home/holbe% perl -e 'printf("%llu\n", 11171763644)'
4294967295
%i, %li, %u and %lu are expected to fail, but %lli and %llu aren't.
This is most likely something to forward upstream.
regards
Mario
--
The social dynamics of the net are a direct consequence of the fact that
nobody has yet developed a Remote Strangulation Protocol. -- Larry Wall
signature.asc
Description: Digital signature

