<patch> avoid division by 0 in Benchmark.pm
Stephane Payrard [Mon, 24 Jan 2000 16:15:38 +0000 (17:15 +0100)]
To: Gurusamy Sarathy <gsar@ActiveState.com>
Cc: perl5-porters@perl.org
Message-ID: <20000124161538.A995@freesurf.fr>

p4raw-id: //depot/cfgperl@4880

lib/Benchmark.pm

index 487ddd5..7cb78eb 100644 (file)
@@ -435,7 +435,7 @@ sub timestr {
                            $r,$pu,$ps,$pt) if $style eq 'noc';
     $s=sprintf("%2d wallclock secs (%$f cusr + %$f csys = %$f CPU)",
                            $r,$cu,$cs,$ct) if $style eq 'nop';
-    $s .= sprintf(" @ %$f/s (n=$n)", $n / ( $pu + $ps )) if $n;
+    $s .= sprintf(" @ %$f/s (n=$n)", $n / ( $pu + $ps )) if $pu + $ps;
     $s;
 }