From bdea30ac9bf86a2ce0a790faed9e8d590cc41269 Mon Sep 17 00:00:00 2001 From: Heuzef Date: Wed, 30 Oct 2019 17:02:59 +0100 Subject: [PATCH] Fix formule toosmall --- Check.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Check.pm b/Check.pm index eaa24f1..7a59d40 100644 --- a/Check.pm +++ b/Check.pm @@ -109,7 +109,7 @@ sub action } # TOO SMALL ? If the size is 3 times lower than usual : - if ( $new_size < ($new_size_q1 - $new_size_q3 - $new_size_q1) * 1.5 and $new_size < $new_size_avg / 3 ) { + if ( $new_size < ($new_size_q1 - ($new_size_q3 - $new_size_q1) ) * 1.5 and $new_size < $new_size_avg / 3 ) { $toosmall = 1; }