aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2006-07-01 12:06:36 +0000
committerUlf Lamping <ulf.lamping@web.de>2006-07-01 12:06:36 +0000
commit637a18eedb69a6b74f76e7f874a8c27cb928bd74 (patch)
treec28c5a424d39cf937ef8dbca4ba907fc5876e8e0
parentca3288b0f73fd45046838df82aee5909a3be13f7 (diff)
mark unused parameters
svn path=/trunk/; revision=18630
-rw-r--r--gtk/expert_comp_dlg.c4
-rw-r--r--gtk/hostlist_ncp.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/gtk/expert_comp_dlg.c b/gtk/expert_comp_dlg.c
index eba5ad1220..1386173f75 100644
--- a/gtk/expert_comp_dlg.c
+++ b/gtk/expert_comp_dlg.c
@@ -87,7 +87,7 @@ error_reset(void *pss)
}
static int
-error_packet(void *pss, packet_info *pinfo, epan_dissect_t *edt _U_, const void *prv)
+error_packet(void *pss, packet_info *pinfo _U_, epan_dissect_t *edt _U_, const void *prv)
{
expert_comp_dlg_t *ss=(expert_comp_dlg_t *)pss;
const expert_info_t *error_pkt=prv;
@@ -175,7 +175,7 @@ expert_dlg_destroy_cb(GtkWindow *win _U_, gpointer data)
}
static void
-expert_comp_init(const char *optarg, void* userdata _U_)
+expert_comp_init(const char *optarg _U_, void* userdata _U_)
{
expert_comp_dlg_t *ss;
const char *filter=NULL;
diff --git a/gtk/hostlist_ncp.c b/gtk/hostlist_ncp.c
index 1d40d6c03f..5bf2f3dc68 100644
--- a/gtk/hostlist_ncp.c
+++ b/gtk/hostlist_ncp.c
@@ -42,7 +42,7 @@
static int
-ncp_hostlist_packet(void *pit, packet_info *pinfo, epan_dissect_t *edt _U_, const void *vip)
+ncp_hostlist_packet(void *pit, packet_info *pinfo, epan_dissect_t *edt _U_, const void *vip _U_)
{
hostlist_table *hosts=(hostlist_table *)pit;
/*const ncp_common_header *ncphdr=vip;*/