From 55b5349f7516ec04e003470cfe13238e0b0e5435 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Mon, 6 Jan 2020 05:31:07 +0000 Subject: wwwstatic: use sprintf for Perl <5.22 compatibility We only declare a Perl 5.10.1+ requirement, and POSIX::lround was not added until 5.21.4 (5.22.0 for stable releases). --- lib/PublicInbox/WwwStatic.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/PublicInbox') diff --git a/lib/PublicInbox/WwwStatic.pm b/lib/PublicInbox/WwwStatic.pm index bc42236e..917049bb 100644 --- a/lib/PublicInbox/WwwStatic.pm +++ b/lib/PublicInbox/WwwStatic.pm @@ -12,7 +12,7 @@ use strict; use parent qw(Exporter); use bytes (); use Fcntl qw(SEEK_SET O_RDONLY O_NONBLOCK); -use POSIX qw(strftime lround); +use POSIX qw(strftime); use HTTP::Date qw(time2str); use HTTP::Status qw(status_message); use Errno qw(EACCES ENOTDIR ENOENT); @@ -238,7 +238,7 @@ sub human_size ($) { last; } } - lround($size).$suffix; + sprintf('%lu', $size).$suffix; } # by default, this returns "index.html" if it exists for a given directory -- cgit v1.2.3-24-ge0c7