Re: [perl #23463]: compiler version on sparc/netbsd
Alain Barbet [Wed, 20 Aug 2003 20:39:17 +0000 (22:39 +0200)]
Message-ID: <3F43C055.6030709@jupiter.alianet>

p4raw-id: //depot/perl@20823

t/op/pack.t

index 31e7b34..a0d8b7a 100755 (executable)
@@ -445,7 +445,7 @@ sub numbers_with_total {
         } else {
             $calc_sum = $total;
             # Shift into range by some multiple of the total
-            my $mult = int ($total / $max_p1);
+            my $mult = $max_p1 ? int ($total / $max_p1) : undef;
             # Need this to make sure that -1 + (~0+1) is ~0 (ie still integer)
             $calc_sum = $total - $mult;
             $calc_sum -= $mult * $max;