diff options
author | Vladislav Vaintroub <wlad@montyprogram.com> | 2011-07-10 13:38:15 +0200 |
---|---|---|
committer | Vladislav Vaintroub <wlad@montyprogram.com> | 2011-07-10 13:38:15 +0200 |
commit | 3d4ff9a239d0749dcc7e8c7857c4b2fc3b17f255 (patch) | |
tree | 175a1d200f1f966a399f91942849891c79197995 /include | |
parent | 23e0b1cb39f1a7a3d9b9556f84c0940ff00b9662 (diff) | |
download | mariadb-git-3d4ff9a239d0749dcc7e8c7857c4b2fc3b17f255.tar.gz |
Post-fix for LP808233 : replace uint with "unsigned int" in mysql.h.pp, too
Diffstat (limited to 'include')
-rw-r--r-- | include/mysql.h.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mysql.h.pp b/include/mysql.h.pp index 86ca04fe766..a3bce0e5506 100644 --- a/include/mysql.h.pp +++ b/include/mysql.h.pp @@ -224,7 +224,7 @@ typedef struct st_typelib { extern my_ulonglong find_typeset(char *x, TYPELIB *typelib,int *error_position); extern int find_type_with_warning(const char *x, TYPELIB *typelib, const char *option); -extern uint find_type_or_exit(const char *x, TYPELIB *typelib, +extern unsigned int find_type_or_exit(const char *x, TYPELIB *typelib, const char *option); extern int find_type(char *x, const TYPELIB *typelib, unsigned int full_name); extern void make_type(char *to,unsigned int nr,TYPELIB *typelib); |