X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fmath%2Fhistogram.c;h=0c641b56e127ddbdf9a180363629101fad746b6c;hb=f8cbc356e15010f4ca86b4f43652bbc12b57b8fc;hp=3c88c3858f61c6b1c2230843a7b9151a47902956;hpb=12895f38b01137ae0b14f07d26e6f0928b735bdf;p=pspp diff --git a/src/math/histogram.c b/src/math/histogram.c index 3c88c3858f..0c641b56e1 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;