From: Dieter Bloms Date: Sun, 25 May 2008 09:15:15 +0000 (+0200) Subject: src/utils_threshold.c: Fix wrong output (was `min, min', should be `min, max') in... X-Git-Tag: collectd-4.4.1~5^2~3 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=e3e67d21f20d8ace9d1d1dd60dc3bc9435b316b8;p=collectd.git src/utils_threshold.c: Fix wrong output (was `min, min', should be `min, max') in the created notification. Resolves: #16 --- diff --git a/src/utils_threshold.c b/src/utils_threshold.c index b4fb8554..4da8943c 100644 --- a/src/utils_threshold.c +++ b/src/utils_threshold.c @@ -645,7 +645,7 @@ static int ut_report_state (const data_set_t *ds, "%f. That is within the %s region of %f and %f.", ds->ds[ds_index].name, values[ds_index], (state == STATE_ERROR) ? "failure" : "warning", - min, min); + min, max); } else {