diff options
author | monty@mysql.com <> | 2004-08-23 13:46:51 +0300 |
---|---|---|
committer | monty@mysql.com <> | 2004-08-23 13:46:51 +0300 |
commit | 309d691e65ae9953f637bda88d24672537ddf6d0 (patch) | |
tree | 31ceb8889afc4b529a25bc930d8aa8a41d83ceb2 /mysys/list.c | |
parent | 84d9b862f6619c74de00349e9398f11ec6409d10 (diff) | |
download | mariadb-git-309d691e65ae9953f637bda88d24672537ddf6d0.tar.gz |
Changed %lx -> 0x%lx (for easier comparison of debug files)
Cosmetic cleanups
Don't call 'delete_elements' on copy_funcs as this causes elements to be freed twice
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 17028e8e183..64fca10dc0b 100644 --- a/mysys/list.c +++ b/mysys/list.c @@ -28,7 +28,7 @@ LIST *list_add(LIST *root, LIST *element) { DBUG_ENTER("list_add"); - DBUG_PRINT("enter",("root: %lx element: %lx", root, element)); + DBUG_PRINT("enter",("root: 0x%lx element: %lx", root, element)); if (root) { if (root->prev) /* If add in mid of list */ |