diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2010-06-28 10:39:34 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2010-06-28 10:39:34 +0200 |
commit | ff97274bcaab128b5930353dcbe0905fdb136ff2 (patch) | |
tree | 1cc9fb041482f9556749cf6a0f1f9a2458de75dc /src/core | |
parent | dcdba08f8aad80bfe36f4d2f355bfcdfd7997a07 (diff) | |
download | weechat-ff97274bcaab128b5930353dcbe0905fdb136ff2.zip |
Add string "weelist" in dump of weelist to log file
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/wee-list.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/wee-list.c b/src/core/wee-list.c index 15583a6bd..25e182f0a 100644 --- a/src/core/wee-list.c +++ b/src/core/wee-list.c @@ -371,7 +371,7 @@ weelist_print_log (struct t_weelist *weelist, const char *name) { struct t_weelist_item *ptr_item; - log_printf ("[%s (addr:0x%lx)]", name, weelist); + log_printf ("[weelist %s (addr:0x%lx)]", name, weelist); for (ptr_item = weelist->items; ptr_item; ptr_item = ptr_item->next_item) |