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:
authorMichael Veksler <Mihails.Vekslers@zabbix.com>2018-08-08 11:28:41 +0300
committerMichael Veksler <Mihails.Vekslers@zabbix.com>2018-08-08 11:28:41 +0300
commit43f2c3b5a8b8a1ca4758094859dca8b0627fa98e (patch)
treea17e5450c5c2a75734f5e556fa6c6e02c8eead0d /include/zbxalgo.h
parent3988657e2f19835ed3d232fec7964f0d5c5ed1af (diff)
...G...PS. [DEV-699] changed type name to 'zbx_ ## __id ## _free_func_t' for function 'zbx_vector_ ## __id ## _clear_ext()'
Diffstat (limited to 'include/zbxalgo.h')
-rw-r--r--include/zbxalgo.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/zbxalgo.h b/include/zbxalgo.h
index c1091aa7eed..14e0a5d6283 100644
--- a/include/zbxalgo.h
+++ b/include/zbxalgo.h
@@ -318,9 +318,9 @@ void zbx_vector_ ## __id ## _clear(zbx_vector_ ## __id ## _t *vector);
\
ZBX_VECTOR_DECL(__id, __type); \
\
-typedef void (*zbx_clean_ ## __id ## _func_t)(__type data); \
+typedef void (*zbx_ ## __id ## _free_func_t)(__type data); \
\
-void zbx_vector_ ## __id ## _clear_ext(zbx_vector_ ## __id ## _t *vector, zbx_clean_ ## __id ## _func_t clean_func);
+void zbx_vector_ ## __id ## _clear_ext(zbx_vector_ ## __id ## _t *vector, zbx_ ## __id ## _free_func_t free_func);
ZBX_VECTOR_DECL(uint64, zbx_uint64_t);
ZBX_PTR_VECTOR_DECL(str, char *);