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

Rename rest() macro in my_list.h to list_rest(). (Bug #12327)

This commit is contained in:
jimw@mysql.com
2005-08-09 18:02:36 -07:00
parent aa99bd61c0
commit 194360397c
4 changed files with 5 additions and 4 deletions

View File

@ -271,7 +271,7 @@ static void display_table_locks(void)
VOID(my_init_dynamic_array(&saved_table_locks,sizeof(TABLE_LOCK_INFO),open_cache.records + 20,50));
VOID(pthread_mutex_lock(&THR_LOCK_lock));
for (list=thr_lock_thread_list ; list ; list=rest(list))
for (list= thr_lock_thread_list; list; list= list_rest(list))
{
THR_LOCK *lock=(THR_LOCK*) list->data;