~jlukas79/+junk/mysql-server

« back to all changes in this revision

Viewing changes to mysys/list.c

manual merge 6.0-main --> 6.0-bka-review

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
LIST *list_add(LIST *root, LIST *element)
28
28
{
29
29
  DBUG_ENTER("list_add");
30
 
  DBUG_PRINT("enter",("root: 0x%lx  element: 0x%lx", (long) root, (long) element));
 
30
  DBUG_PRINT("enter",("root: %p  element: %p", root, element));
31
31
  if (root)
32
32
  {
33
33
    if (root->prev)                     /* If add in mid of list */