summaryrefslogtreecommitdiff
path: root/include/mysql.h
diff options
context:
space:
mode:
authorram@gw.mysql.r18.ru <>2003-09-24 15:41:09 +0500
committerram@gw.mysql.r18.ru <>2003-09-24 15:41:09 +0500
commitdf59678b95f717101366ea7970c89a4b53462d53 (patch)
treed3dbf98cff1ae15a1c80f75c19fb971713cbd06b /include/mysql.h
parentb0ae222ea2efb794ebd59d8b1508451c9604ae6a (diff)
downloadmariadb-git-df59678b95f717101366ea7970c89a4b53462d53.tar.gz
A fix. Please never use 'ulong' here!
Diffstat (limited to 'include/mysql.h')
-rw-r--r--include/mysql.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mysql.h b/include/mysql.h
index 1db322d5304..95730c0f2f5 100644
--- a/include/mysql.h
+++ b/include/mysql.h
@@ -352,7 +352,7 @@ int STDCALL mysql_ping(MYSQL *mysql);
const char * STDCALL mysql_stat(MYSQL *mysql);
const char * STDCALL mysql_get_server_info(MYSQL *mysql);
const char * STDCALL mysql_get_client_info(void);
-ulong STDCALL mysql_get_client_version(void);
+unsigned long STDCALL mysql_get_client_version(void);
const char * STDCALL mysql_get_host_info(MYSQL *mysql);
unsigned int STDCALL mysql_get_proto_info(MYSQL *mysql);
MYSQL_RES * STDCALL mysql_list_dbs(MYSQL *mysql,const char *wild);