From: Jan Kundrát Date: Tue, 11 Mar 2014 09:57:45 +0000 (+0100) Subject: Coding style: fix indents X-Git-Tag: collectd-5.5.0~268^2~2 X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=710d9305715622700e4eefbf20b4cba307d7ef57;p=collectd.git Coding style: fix indents --- diff --git a/src/threshold.c b/src/threshold.c index 7df4d616..2173fa80 100644 --- a/src/threshold.c +++ b/src/threshold.c @@ -773,7 +773,7 @@ static int ut_check_one_data_source (const data_set_t *ds, if ((!isnan (th->warning_min) && (th->warning_min > values[ds_index])) || (!isnan (th->warning_max) && (th->warning_max < values[ds_index]))) is_warning++; - } + } if (is_failure != 0) return (STATE_ERROR);