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:
authorJurijs Klopovskis <jurijs.klopovskis@zabbix.com>2021-09-09 09:08:28 +0300
committerJurijs Klopovskis <jurijs.klopovskis@zabbix.com>2021-09-09 09:08:28 +0300
commit66f639571db244854e5bff1b91166848eca0fe6d (patch)
tree06e938b29f1f64805103966ceec346fcfe56dd50 /include/db.h
parent64d0f5b9990dc1a48a874080fa4f5643fff627e6 (diff)
.......PS. [DEV-1952] changed DBextract_version_info return type to void
Diffstat (limited to 'include/db.h')
-rw-r--r--include/db.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/db.h b/include/db.h
index 1c4278a488d..5fcd0d725ae 100644
--- a/include/db.h
+++ b/include/db.h
@@ -546,9 +546,9 @@ const ZBX_FIELD *DBget_field(const ZBX_TABLE *table, const char *fieldname);
#define DBget_maxid(table) DBget_maxid_num(table, 1)
zbx_uint64_t DBget_maxid_num(const char *tablename, int num);
-zbx_uint32_t DBextract_version_info(struct zbx_db_version_info_t *version_info);
-void DBflush_version_requirements(const char *version);
-int DBcheck_capabilities(zbx_uint32_t db_version);
+void DBextract_version_info(struct zbx_db_version_info_t *version_info);
+void DBflush_version_requirements(const char *version);
+int DBcheck_capabilities(zbx_uint32_t db_version);
#ifdef HAVE_POSTGRESQL
char *zbx_db_get_schema_esc(void);