summaryrefslogtreecommitdiff
path: root/src/core/wee-hook.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/wee-hook.c')
-rw-r--r--src/core/wee-hook.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/core/wee-hook.c b/src/core/wee-hook.c
index c7100260e..4e0959b16 100644
--- a/src/core/wee-hook.c
+++ b/src/core/wee-hook.c
@@ -378,10 +378,11 @@ hook_init_data (struct t_hook *hook, struct t_weechat_plugin *plugin,
if (weechat_debug_core >= 2)
{
gui_chat_printf (NULL,
- "debug: adding hook: type=%d (%s), plugin=%lx (%s), "
+ "debug: adding hook: type=%d (%s), plugin=\"%s\", "
"priority=%d",
- hook->type, hook_type_string[hook->type],
- hook->plugin, plugin_get_name (hook->plugin),
+ hook->type,
+ hook_type_string[hook->type],
+ plugin_get_name (hook->plugin),
hook->priority);
}
}
@@ -3538,9 +3539,10 @@ unhook (struct t_hook *hook)
if (weechat_debug_core >= 2)
{
gui_chat_printf (NULL,
- "debug: removing hook: type=%d (%s), plugin=%lx (%s)",
- hook->type, hook_type_string[hook->type],
- hook->plugin, plugin_get_name (hook->plugin));
+ "debug: removing hook: type=%d (%s), plugin=\"%s\"",
+ hook->type,
+ hook_type_string[hook->type],
+ plugin_get_name (hook->plugin));
}
/* free data */