diff options
author | unknown <serg@serg.mylan> | 2004-11-02 22:46:55 +0100 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2004-11-02 22:46:55 +0100 |
commit | a614bc9b59209e494a0299241b18283c3eaadcb9 (patch) | |
tree | 9b564e3e1e83f84900b8303b7d04a6988a736a03 | |
parent | 5ff32da2653b8f6dfb2701a69153ff55cd4fca56 (diff) | |
download | mariadb-git-a614bc9b59209e494a0299241b18283c3eaadcb9.tar.gz |
one more name clash in public includes fixed
http://lists.mysql.com/internals/18149
-rw-r--r-- | include/my_list.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/my_list.h b/include/my_list.h index 789bbb50f97..f786621e311 100644 --- a/include/my_list.h +++ b/include/my_list.h @@ -33,8 +33,8 @@ extern LIST *list_delete(LIST *root,LIST *element); extern LIST *list_cons(void *data,LIST *root); extern LIST *list_reverse(LIST *root); extern void list_free(LIST *root,unsigned int free_data); -extern unsigned int list_length(LIST *list); -extern int list_walk(LIST *list,list_walk_action action,gptr argument); +extern unsigned int list_length(LIST *); +extern int list_walk(LIST *,list_walk_action action,gptr argument); #define rest(a) ((a)->next) #define list_push(a,b) (a)=list_cons((b),(a)) |