diff options
Diffstat (limited to 'src/plugins/scripts/tcl/weechat-tcl.c')
-rw-r--r-- | src/plugins/scripts/tcl/weechat-tcl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/scripts/tcl/weechat-tcl.c b/src/plugins/scripts/tcl/weechat-tcl.c index 79a85cef1..3a77e418b 100644 --- a/src/plugins/scripts/tcl/weechat-tcl.c +++ b/src/plugins/scripts/tcl/weechat-tcl.c @@ -414,7 +414,6 @@ weechat_tcl_infolist_cb (void *data, const char *infolist_name, { /* make C compiler happy */ (void) data; - (void) arguments; if (!infolist_name || !infolist_name[0]) return NULL; @@ -422,7 +421,8 @@ weechat_tcl_infolist_cb (void *data, const char *infolist_name, if (weechat_strcasecmp (infolist_name, "tcl_script") == 0) { return script_infolist_list_scripts (weechat_tcl_plugin, - tcl_scripts, pointer); + tcl_scripts, pointer, + arguments); } return NULL; |