From 8f2db839de0c4c8683ec460819c1ee77a718c770 Mon Sep 17 00:00:00 2001 From: Miroslav Lichvar Date: Tue, 9 Jun 2026 12:05:59 +0200 Subject: [PATCH] sourcestats: change MAX_SKEW to 1.0 Change the upper limit of skew from 100.0 to more reasonable 1.0. --- sourcestats.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sourcestats.c b/sourcestats.c index 047cf8f4..c7ea4f9b 100644 --- a/sourcestats.c +++ b/sourcestats.c @@ -49,7 +49,7 @@ /* The minimum and maximum assumed skew */ #define MIN_SKEW 1.0e-12 -#define MAX_SKEW 1.0e+02 +#define MAX_SKEW 1.0e+00 /* The minimum standard deviation */ #define MIN_STDDEV 1.0e-9 -- 2.47.3