1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

hist: fix invalid min value

This commit is contained in:
Steffen Vogel 2018-10-21 21:53:00 +01:00
parent e76f8fc4f4
commit 2ded798e86

View file

@ -112,7 +112,7 @@ void hist_reset(struct hist *h)
h->higher = 0;
h->lower = 0;
h->highest = DBL_MIN;
h->highest = -DBL_MAX;
h->lowest = DBL_MAX;
if (h->data)