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:
authorAleksejs Sestakovs <aleksejs.sestakovs@zabbix.com>2021-11-04 16:08:02 +0300
committerAleksejs Sestakovs <aleksejs.sestakovs@zabbix.com>2021-11-04 16:08:02 +0300
commit093ca8d616d8475c9b00041953e6070a737f8aec (patch)
tree0ce174c8ea7d4af2c280439083b909933fd05499 /include/common.h
parent6ba3246bb7f75d18245def6ccdc83d20fe0e2b75 (diff)
...G...... [ZBXNEXT-6936] fixed zbx_strarr_free()
Diffstat (limited to 'include/common.h')
-rw-r--r--include/common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/common.h b/include/common.h
index 077cb4eeeb6..58408c72004 100644
--- a/include/common.h
+++ b/include/common.h
@@ -1154,7 +1154,7 @@ int str_n_in_list(const char *list, const char *value, size_t len, char delimite
char *str_linefeed(const char *src, size_t maxline, const char *delim);
void zbx_strarr_init(char ***arr);
void zbx_strarr_add(char ***arr, const char *entry);
-void zbx_strarr_free(char **arr);
+void zbx_strarr_free(char ***arr);
#if defined(__GNUC__) || defined(__clang__)
# define __zbx_attr_format_printf(idx1, idx2) __attribute__((__format__(__printf__, (idx1), (idx2))))