1
0
mirror of https://github.com/mariadb-corporation/mariadb-connector-c.git synced 2025-08-07 02:42:49 +03:00

Build fix:

declared deinit function of plugins as deinit(void) instead
of deinit().
This commit is contained in:
Georg Richter
2020-10-21 07:23:50 +02:00
parent ca4f043cfe
commit 1fed6c3184
4 changed files with 6 additions and 6 deletions

View File

@@ -78,7 +78,7 @@
const char *license; \
void *mysql_api; \
int (*init)(char *, size_t, int, va_list); \
int (*deinit)(); \
int (*deinit)(void); \
int (*options)(const char *option, const void *);
struct st_mysql_client_plugin
{