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>2018-04-11 16:53:42 +0300
committerAndris Zeila <andris.zeila@zabbix.com>2018-04-11 16:53:42 +0300
commit7a16b2c95d3637a6d7978e2ee28e0c2487fa05b9 (patch)
treef7fb01cf6b43d553459671ef7a7168a0a449353f /include/zbxcompress.h
parentf55b01bf45a0cbdfc38c1951523e899885778a1f (diff)
...G...PS. [ZBXNEXT-4411] fixed empty parameter function declaration
Diffstat (limited to 'include/zbxcompress.h')
-rw-r--r--include/zbxcompress.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/zbxcompress.h b/include/zbxcompress.h
index 41e62dffa76..07c90234b83 100644
--- a/include/zbxcompress.h
+++ b/include/zbxcompress.h
@@ -22,6 +22,6 @@
int zbx_compress(const char *in, size_t size_in, char **out, size_t *size_out);
int zbx_uncompress(const char *in, size_t size_in, char *out, size_t *size_out);
-const char *zbx_compress_strerror();
+const char *zbx_compress_strerror(void);
#endif