diff options
author | unknown <venu@myvenu.com> | 2002-11-28 09:56:26 -0800 |
---|---|---|
committer | unknown <venu@myvenu.com> | 2002-11-28 09:56:26 -0800 |
commit | 1c2d7aa88090255f21154e262f190c257c8c09ef (patch) | |
tree | 7755a31c97889d71c72f0e85125dadddbd69c951 /include/my_list.h | |
parent | 48a64b57033b004d6e4fa92e5c13b21f0f24af22 (diff) | |
download | mariadb-git-1c2d7aa88090255f21154e262f190c257c8c09ef.tar.gz |
Get rid of pbool from my_list.h; and avoid using the my_global.h for clients
Diffstat (limited to 'include/my_list.h')
-rw-r--r-- | include/my_list.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/my_list.h b/include/my_list.h index 0f56d4c532b..056e1f13b36 100644 --- a/include/my_list.h +++ b/include/my_list.h @@ -32,7 +32,7 @@ extern LIST *list_add(LIST *root,LIST *element); 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,pbool free_data); +extern void list_free(LIST *root,uint free_data); extern uint list_length(LIST *list); extern int list_walk(LIST *list,list_walk_action action,gptr argument); |