aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/conversations_tr.c
diff options
context:
space:
mode:
Diffstat (limited to 'gtk/conversations_tr.c')
-rw-r--r--gtk/conversations_tr.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/conversations_tr.c b/gtk/conversations_tr.c
index 38a08de96b..f678ae50bd 100644
--- a/gtk/conversations_tr.c
+++ b/gtk/conversations_tr.c
@@ -55,7 +55,7 @@ tr_conversation_packet(void *pct, packet_info *pinfo, epan_dissect_t *edt _U_, c
static void
-tr_conversation_init(const char *optarg)
+tr_conversation_init(const char *optarg, void* userdata _U_)
{
const char *filter=NULL;
@@ -73,14 +73,14 @@ tr_conversation_init(const char *optarg)
static void
tr_conversation_cb(GtkWidget *w _U_, gpointer d _U_)
{
- tr_conversation_init("conv,tr");
+ tr_conversation_init("conv,tr",NULL);
}
void
register_tap_listener_tr_conversation(void)
{
- register_stat_cmd_arg("conv,tr", tr_conversation_init);
+ register_stat_cmd_arg("conv,tr", tr_conversation_init, NULL);
register_stat_menu_item("Token Ring", REGISTER_STAT_GROUP_CONVERSATION_LIST,
tr_conversation_cb, NULL, NULL, NULL);