projects
/
collectd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
aca7492
)
src/utils_threshold.c: Fix wrong output (was `min, min', should be `min, max') in...
author
Dieter Bloms
<collectd@bloms.de>
Sun, 25 May 2008 09:15:15 +0000
(11:15 +0200)
committer
Florian Forster
<octo@crystal.wlan.home.verplant.org>
Sun, 25 May 2008 09:15:15 +0000
(11:15 +0200)
Resolves: #16
src/utils_threshold.c
patch
|
blob
|
history
diff --git
a/src/utils_threshold.c
b/src/utils_threshold.c
index
b4fb855
..
4da8943
100644
(file)
--- 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, m
in
);
+ min, m
ax
);
}
else
{