diff options
author | venu@myvenu.com <> | 2002-11-28 09:56:26 -0800 |
---|---|---|
committer | venu@myvenu.com <> | 2002-11-28 09:56:26 -0800 |
commit | 5aff325ce3300cf0834c3ece2dc521a60afff2a8 (patch) | |
tree | 7755a31c97889d71c72f0e85125dadddbd69c951 /mysys/list.c | |
parent | a3ae370db8df2a10b5414d3c7dd54b69f1029d4b (diff) | |
download | mariadb-git-5aff325ce3300cf0834c3ece2dc521a60afff2a8.tar.gz |
Get rid of pbool from my_list.h; and avoid using the my_global.h for clients
Diffstat (limited to 'mysys/list.c')
-rw-r--r-- | mysys/list.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysys/list.c b/mysys/list.c index ac9e1b979a0..17028e8e183 100644 --- a/mysys/list.c +++ b/mysys/list.c @@ -55,7 +55,7 @@ LIST *list_delete(LIST *root, LIST *element) } -void list_free(LIST *root, pbool free_data) +void list_free(LIST *root, uint free_data) { LIST *next; while (root) |