summaryrefslogtreecommitdiff
path: root/libmysql
diff options
context:
space:
mode:
authorunknown <hf@deer.(none)>2004-05-31 13:53:10 +0500
committerunknown <hf@deer.(none)>2004-05-31 13:53:10 +0500
commit09b9182e2e73f06dac3142eb7a637c5c37778586 (patch)
tree557a52f94050c6d6e7d94130dfeeff2def7ad473 /libmysql
parent00c41b28504728ecdce90a3a2975102e401a3bfc (diff)
downloadmariadb-git-09b9182e2e73f06dac3142eb7a637c5c37778586.tar.gz
mysql_get_parameter interface fixed
include/mysql.h: (void) added to the empty parameter's list libmysql/libmysql.c: (void) added to the empty parameter's list
Diffstat (limited to 'libmysql')
-rw-r--r--libmysql/libmysql.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmysql/libmysql.c b/libmysql/libmysql.c
index 0a23954ae67..b3624ef3e94 100644
--- a/libmysql/libmysql.c
+++ b/libmysql/libmysql.c
@@ -124,7 +124,7 @@ void STDCALL mysql_server_end()
static MYSQL_PARAMETERS mysql_internal_parameters=
{&max_allowed_packet, &net_buffer_length};
-MYSQL_PARAMETERS *STDCALL mysql_get_parameters()
+MYSQL_PARAMETERS *STDCALL mysql_get_parameters(void)
{
return &mysql_internal_parameters;
}