diff options
author | Vladislav Vaintroub <wlad@montyprogram.com> | 2011-07-10 12:48:13 +0200 |
---|---|---|
committer | Vladislav Vaintroub <wlad@montyprogram.com> | 2011-07-10 12:48:13 +0200 |
commit | 3b393c929b2825f3737c265b8aa39b9075e3a5e5 (patch) | |
tree | a7406f92059f87672c94ecaf546ee2b018abdc4b /include | |
parent | 7199ac591669a386f62c623e26071452ad3dd52b (diff) | |
download | mariadb-git-3b393c929b2825f3737c265b8aa39b9075e3a5e5.tar.gz |
Fix LPBUG#808233 - undefined uint in typelib.h
Diffstat (limited to 'include')
-rw-r--r-- | include/typelib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/typelib.h b/include/typelib.h index a5ac5cc7bbf..16c719e3419 100644 --- a/include/typelib.h +++ b/include/typelib.h @@ -29,7 +29,7 @@ typedef struct st_typelib { /* Different types saved here */ 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); |