diff options
author | georg@lmy002.wdf.sap.corp <> | 2005-07-19 17:12:00 +0200 |
---|---|---|
committer | georg@lmy002.wdf.sap.corp <> | 2005-07-19 17:12:00 +0200 |
commit | 21a88afeeda475a243b55878c956c7c0886837c5 (patch) | |
tree | 27b436da7b50846f63296304c0836e1f47bf211c /include/mysql.h | |
parent | ff0c7f22cfab033022d4090c7cb324d4b4ace619 (diff) | |
download | mariadb-git-21a88afeeda475a243b55878c956c7c0886837c5.tar.gz |
minor fix (backport from 5.0) - changed function prototype/definition
Diffstat (limited to 'include/mysql.h')
-rw-r--r-- | include/mysql.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mysql.h b/include/mysql.h index ab61fe694d9..0949937814c 100644 --- a/include/mysql.h +++ b/include/mysql.h @@ -381,7 +381,7 @@ unsigned int STDCALL mysql_warning_count(MYSQL *mysql); const char * STDCALL mysql_info(MYSQL *mysql); unsigned long STDCALL mysql_thread_id(MYSQL *mysql); const char * STDCALL mysql_character_set_name(MYSQL *mysql); -int STDCALL mysql_set_character_set(MYSQL *mysql, char *csname); +int STDCALL mysql_set_character_set(MYSQL *mysql, const char *csname); MYSQL * STDCALL mysql_init(MYSQL *mysql); my_bool STDCALL mysql_ssl_set(MYSQL *mysql, const char *key, |