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:
authorAndris Zeila <andris.zeila@zabbix.com>2013-07-30 12:33:04 +0400
committerAndris Zeila <andris.zeila@zabbix.com>2013-07-30 12:33:04 +0400
commit45be2084bc25c21ed758856364275ddf5ec05fbd (patch)
treeca2c0017f9ad3b84c3cd139d6b07227b29c27216 /include/zbxregexp.h
parent748b110f0bd0f20b25f806e276c7f5ad35c8ab78 (diff)
........S. [ZBXNEXT-1837] fixed compiler warnings
Diffstat (limited to 'include/zbxregexp.h')
-rw-r--r--include/zbxregexp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/zbxregexp.h b/include/zbxregexp.h
index acd012b83ba..67c04609a22 100644
--- a/include/zbxregexp.h
+++ b/include/zbxregexp.h
@@ -41,8 +41,8 @@ void zbx_regexp_clean_expressions(zbx_vector_ptr_t *expressions);
void add_regexp_ex(zbx_vector_ptr_t *regexps, const char *name, const char *expression, int expression_type,
char exp_delimiter, int case_sensitive);
-int regexp_match_ex(zbx_vector_ptr_t *regexps, const char *string, const char *pattern, int cs);
-int regexp_sub_ex(zbx_vector_ptr_t *regexps, const char *string, const char *pattern, int cs,
+int regexp_match_ex(zbx_vector_ptr_t *regexps, const char *string, const char *pattern, int case_sensitive);
+int regexp_sub_ex(zbx_vector_ptr_t *regexps, const char *string, const char *pattern, int case_sensitive,
const char *output_template, char **output);