summaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-dvb-tdt.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-dvb-tdt.c')
-rw-r--r--epan/dissectors/packet-dvb-tdt.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/epan/dissectors/packet-dvb-tdt.c b/epan/dissectors/packet-dvb-tdt.c
index c6b8498e..29e85fa1 100644
--- a/epan/dissectors/packet-dvb-tdt.c
+++ b/epan/dissectors/packet-dvb-tdt.c
@@ -19,15 +19,15 @@ void proto_reg_handoff_dvb_tdt(void);
static dissector_handle_t dvb_tdt_handle;
-static int proto_dvb_tdt = -1;
-static int hf_dvb_tdt_utc_time = -1;
+static int proto_dvb_tdt;
+static int hf_dvb_tdt_utc_time;
-static gint ett_dvb_tdt = -1;
+static int ett_dvb_tdt;
static int
dissect_dvb_tdt(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data _U_)
{
- guint offset = 0;
+ unsigned offset = 0;
proto_item *ti;
proto_tree *dvb_tdt_tree;
@@ -65,7 +65,7 @@ proto_register_dvb_tdt(void)
} }
};
- static gint *ett[] = {
+ static int *ett[] = {
&ett_dvb_tdt
};