X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fmath%2Fhistogram.c;h=0c641b56e127ddbdf9a180363629101fad746b6c;hb=7466086a5d1e5325d1aa32482c717e349af6b3ea;hp=3c88c3858f61c6b1c2230843a7b9151a47902956;hpb=cb586666724d5fcbdb658ce471b85484f0a7babe;p=pspp-builds.git diff --git a/src/math/histogram.c b/src/math/histogram.c index 3c88c385..0c641b56 100644 --- a/src/math/histogram.c +++ b/src/math/histogram.c @@ -65,7 +65,7 @@ histogram_create (int bins, double min, double max) int n = ceil (max / (bin_width_2) ) ; - assert (max > min); + assert (max >= min); if ( ! (n % 2 ) ) n++; upper_limit = n * bin_width_2;