summaryrefslogtreecommitdiff
path: root/regen
diff options
context:
space:
mode:
Diffstat (limited to 'regen')
-rw-r--r--regen/mph.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/regen/mph.pl b/regen/mph.pl
index 06d2ccf471..5ed392a1ea 100644
--- a/regen/mph.pl
+++ b/regen/mph.pl
@@ -4,6 +4,7 @@ use warnings;
use Data::Dumper;
use Carp;
use Text::Wrap;
+use bignum; # Otherwise fails on 32-bit systems
my $DEBUG= 0;
my $RSHIFT= 8;
@@ -11,7 +12,6 @@ my $FNV_CONST= 16777619;
sub _fnv {
my ($key, $seed)= @_;
- use integer;
my $hash = 0+$seed;
foreach my $char (split //, $key) {
$hash = $hash ^ ord($char);