aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/conversations_eth.c
diff options
context:
space:
mode:
Diffstat (limited to 'gtk/conversations_eth.c')
-rw-r--r--gtk/conversations_eth.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/conversations_eth.c b/gtk/conversations_eth.c
index 1d2d0f093a..1caa95854f 100644
--- a/gtk/conversations_eth.c
+++ b/gtk/conversations_eth.c
@@ -55,7 +55,7 @@ eth_conversation_packet(void *pct, packet_info *pinfo, epan_dissect_t *edt _U_,
static void
-eth_conversation_init(const char *optarg)
+eth_conversation_init(const char *optarg, void* userdata _U_)
{
const char *filter=NULL;
@@ -73,14 +73,14 @@ eth_conversation_init(const char *optarg)
static void
eth_endpoints_cb(GtkWidget *w _U_, gpointer d _U_)
{
- eth_conversation_init("conv,eth");
+ eth_conversation_init("conv,eth",NULL);
}
void
register_tap_listener_eth_conversation(void)
{
- register_stat_cmd_arg("conv,eth", eth_conversation_init);
+ register_stat_cmd_arg("conv,eth", eth_conversation_init,NULL);
register_stat_menu_item("Ethernet", REGISTER_STAT_GROUP_CONVERSATION_LIST,
eth_endpoints_cb, NULL, NULL, NULL);