1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

fixed compilation warnings. addendum to the fix for bug 29125

This commit is contained in:
Georgi Kodinov
2009-03-20 16:27:53 +02:00
parent 4a3c0d800a
commit ef4ab5cfaa
7 changed files with 10 additions and 12 deletions

View File

@ -61,7 +61,8 @@ static void make_unique_view_field_name(Item *target,
char *name= (target->orig_name ?
target->orig_name :
target->name);
size_t name_len, attempt;
size_t name_len;
uint attempt;
char buff[NAME_LEN+1];
List_iterator_fast<Item> itc(item_list);