From 1f80d75b347f2102ee3aa4054b9230b037859381 Mon Sep 17 00:00:00 2001 From: "holzboote@googlemail.com" <> Date: Mon, 5 May 2014 15:04:39 +0200 Subject: [PATCH] Fixed prototype for mysql_hex_string from ulong to unsigned long --- include/mysql.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/mysql.h b/include/mysql.h index 44cced57..21942927 100644 --- a/include/mysql.h +++ b/include/mysql.h @@ -491,7 +491,7 @@ size_t STDCALL mariadb_convert_string(const char *from, size_t *from_len, CHARSE char *to, size_t *to_len, CHARSET_INFO *to_cs, int *errorcode); int STDCALL mysql_optionsv(MYSQL *mysql,enum mysql_option option, ...); MYSQL_PARAMETERS *STDCALL mysql_get_parameters(void); -ulong STDCALL mysql_hex_string(char *to, const char *from, unsigned long len); +unsigned long STDCALL mysql_hex_string(char *to, const char *from, unsigned long len); my_socket STDCALL mysql_get_socket(const MYSQL *mysql); unsigned int STDCALL mysql_get_timeout_value(const MYSQL *mysql); unsigned int STDCALL mysql_get_timeout_value_ms(const MYSQL *mysql);