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:
authorIgors Homjakovs <git-no-reply@zabbix.com>2014-08-28 15:41:37 +0400
committerIgors Homjakovs <git-no-reply@zabbix.com>2014-08-28 15:41:37 +0400
commitbc133bb4ff505aaa9d1fb6c90c838431a6403a12 (patch)
tree57bb0901388203e93a7dc5df882dbd2fca3de99e /include/log.h
parentff362baaaf72255fe01eb32a4e776813ecb9bd49 (diff)
...G...PS. [ZBXNEXT-101] added void parameter to functions that do not take any parameters
Diffstat (limited to 'include/log.h')
-rw-r--r--include/log.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/log.h b/include/log.h
index d3004e02e9a..68dc0482dfe 100644
--- a/include/log.h
+++ b/include/log.h
@@ -56,12 +56,12 @@ extern int CONFIG_LOG_FILE_SIZE;
int zabbix_open_log(int type, int level, const char *filename);
void zabbix_errlog(zbx_err_codes_t err, ...);
void __zbx_zabbix_log(int level, const char *fmt, ...);
-void zabbix_close_log();
+void zabbix_close_log(void);
void zabbix_set_log_level(int level);
-int zabbix_increase_log_level();
-int zabbix_decrease_log_level();
-const char *zabbix_get_log_level_string();
+int zabbix_increase_log_level(void);
+int zabbix_decrease_log_level(void);
+const char *zabbix_get_log_level_string(void);
int zabbix_check_log_level(int level);
char *zbx_strerror(int errnum);