summaryrefslogtreecommitdiff
path: root/src/core/wee-list.c
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2010-01-01 12:53:36 +0100
committerSebastien Helleu <flashcode@flashtux.org>2010-01-01 12:53:36 +0100
commitb6e141c2869021234d10c967144f9ab8e315ba0f (patch)
tree4f3b6e8e7399c400cbc63d4fe35666d0c8121872 /src/core/wee-list.c
parent6cc9ce87777e6be7dbbe1bfc56ce20fce441782e (diff)
downloadweechat-b6e141c2869021234d10c967144f9ab8e315ba0f.zip
Add pointer user_data in dump of wee-lists
Diffstat (limited to 'src/core/wee-list.c')
-rw-r--r--src/core/wee-list.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/wee-list.c b/src/core/wee-list.c
index 428a5cd20..677e00c54 100644
--- a/src/core/wee-list.c
+++ b/src/core/wee-list.c
@@ -375,6 +375,7 @@ weelist_print_log (struct t_weelist *weelist, const char *name)
ptr_item = ptr_item->next_item)
{
log_printf (" data . . . . . . . . . : '%s'", ptr_item->data);
+ log_printf (" user_data. . . . . . . : 0x%lx", ptr_item->user_data);
log_printf (" prev_item. . . . . . . : 0x%lx", ptr_item->prev_item);
log_printf (" next_item. . . . . . . : 0x%lx", ptr_item->next_item);
}