Skip Menu |

This queue is for tickets about the Net-Gopher CPAN distribution.

Report information
The Basics
Id: 5851
Status: new
Priority: 0/
Queue: Net-Gopher

People
Owner: Nobody in particular
Requestors:
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 1.05
Fixed in: (no value)



Subject: extract_views() uses faulty rounding.
Just adding 0.9 and int()ing the result does NOT round up to the nearest whole number: $ perl -e 'print .02 + 0.9' 0.92 You need to either use POSIX ceil() or create your own.