diff options
author | jimw@mysql.com <> | 2005-08-09 18:02:36 -0700 |
---|---|---|
committer | jimw@mysql.com <> | 2005-08-09 18:02:36 -0700 |
commit | 194360397c1c174884dcec02704a9bc820fa96dc (patch) | |
tree | cf238206fdfb8b8d2fc9727fef3cde6565dc21ea /include | |
parent | aa99bd61c02c6441c486cf58d0b564a24d91dcad (diff) | |
download | mariadb-git-194360397c1c174884dcec02704a9bc820fa96dc.tar.gz |
Rename rest() macro in my_list.h to list_rest(). (Bug #12327)
Diffstat (limited to 'include')
-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 f786621e311..92598696fc4 100644 --- a/include/my_list.h +++ b/include/my_list.h @@ -36,7 +36,7 @@ extern void list_free(LIST *root,unsigned int free_data); extern unsigned int list_length(LIST *); extern int list_walk(LIST *,list_walk_action action,gptr argument); -#define rest(a) ((a)->next) +#define list_rest(a) ((a)->next) #define list_push(a,b) (a)=list_cons((b),(a)) #define list_pop(A) {LIST *old=(A); (A)=list_delete(old,old) ; my_free((gptr) old,MYF(MY_FAE)); } |