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-03-23 18:20:11 +0300
committerAndris Zeila <andris.zeila@zabbix.com>2018-03-23 18:20:11 +0300
commitf9e33102ddc89ee0ccd7e630786255b2e9c91e70 (patch)
treedda76c197e00fe6f907879a35bd3e6b75fac7b56 /include/zbxcompress.h
parent2141982b4d73bf3da6f546fca85fbd909b823f5f (diff)
....I..... [ZBXNEXT-4411] improved error handling, added compress test cases
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 9efbae51c6e..41e62dffa76 100644
--- a/include/zbxcompress.h
+++ b/include/zbxcompress.h
@@ -21,7 +21,7 @@
#define ZABBIX_COMPRESS_H
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);
+int zbx_uncompress(const char *in, size_t size_in, char *out, size_t *size_out);
const char *zbx_compress_strerror();
#endif