Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrejs Kozlovs <andrejs.kozlovs@zabbix.com>2022-04-27 11:52:01 +0300
committerAndrejs Kozlovs <andrejs.kozlovs@zabbix.com>2022-04-27 11:52:01 +0300
commit8b793fd1ea026c3801e23522b9dcd5177372bd96 (patch)
tree87db3c6c4a765fdfaa5d20911ceef6b6079fe12b /include/zbxeval.h
parent8d4af0bb9523cb42e26d5b185daae1900a6ce20c (diff)
.......PS. [ZBXNEXT-7604] fixed after review
Diffstat (limited to 'include/zbxeval.h')
-rw-r--r--include/zbxeval.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/zbxeval.h b/include/zbxeval.h
index 676ab972c87..1cca4bdb461 100644
--- a/include/zbxeval.h
+++ b/include/zbxeval.h
@@ -280,5 +280,5 @@ int zbx_eval_calc_histogram_quantile(const double q, const zbx_vector_dbl_t *val
int zbx_eval_calc_avg(zbx_vector_dbl_t *values, double *result, char **error);
int zbx_eval_calc_min(zbx_vector_dbl_t *values, double *result, char **error);
int zbx_eval_calc_max(zbx_vector_dbl_t *values, double *result, char **error);
-void zbx_eval_calc_sum(zbx_vector_dbl_t *values, double *result);
+int zbx_eval_calc_sum(zbx_vector_dbl_t *values, double *result, char **error);
#endif