From 3d4ff9a239d0749dcc7e8c7857c4b2fc3b17f255 Mon Sep 17 00:00:00 2001 From: Vladislav Vaintroub Date: Sun, 10 Jul 2011 13:38:15 +0200 Subject: [PATCH] Post-fix for LP808233 : replace uint with "unsigned int" in mysql.h.pp, too --- include/mysql.h.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);