diff options
author | unknown <kostja@bodhi.local> | 2007-03-27 20:27:58 +0400 |
---|---|---|
committer | unknown <kostja@bodhi.local> | 2007-03-27 20:27:58 +0400 |
commit | 689816d533e0f9de01498fef4e124192e4797625 (patch) | |
tree | 79502174ae5e635dfaa0b061d041bc77080973ac /include/mysql_h.ic | |
parent | 059df5a15f7cd3326c772491ddd837d5b24e40d0 (diff) | |
download | mariadb-git-689816d533e0f9de01498fef4e124192e4797625.tar.gz |
Change find_type family to accept const TYPELIB*.
include/mysql_h.ic:
Change find_type family to accept const TYPELIB*.
This sort of change can not break the ABI.
Diffstat (limited to 'include/mysql_h.ic')
-rw-r--r-- | include/mysql_h.ic | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mysql_h.ic b/include/mysql_h.ic index 44c51b34c1d..7d16a886fd8 100644 --- a/include/mysql_h.ic +++ b/include/mysql_h.ic @@ -638,7 +638,7 @@ extern TYPELIB * copy_typelib(MEM_ROOT * root, TYPELIB * from); # 415 "mysql_com.h" extern void create_random_string(char * to, unsigned int, struct rand_struct * rand_st); # 30 "typelib.h" -extern int find_type(char * x, TYPELIB * typelib, unsigned int); +extern int find_type(char * x, const TYPELIB * typelib, unsigned int); # 429 "mysql_com.h" extern void get_salt_from_password(unsigned char * res, char const * password); # 422 "mysql_com.h" |