diff options
Diffstat (limited to 'epan/dissectors/packet-dcerpc-rdaclif.c')
-rw-r--r-- | epan/dissectors/packet-dcerpc-rdaclif.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/epan/dissectors/packet-dcerpc-rdaclif.c b/epan/dissectors/packet-dcerpc-rdaclif.c index ee40f8c8..cc2826eb 100644 --- a/epan/dissectors/packet-dcerpc-rdaclif.c +++ b/epan/dissectors/packet-dcerpc-rdaclif.c @@ -21,19 +21,19 @@ void proto_register_rdaclif (void); void proto_reg_handoff_rdaclif (void); -static int proto_rdaclif = -1; -static int hf_rdaclif_opnum = -1; +static int proto_rdaclif; +static int hf_rdaclif_opnum; -static gint ett_rdaclif = -1; +static int ett_rdaclif; static e_guid_t uuid_rdaclif = { 0x47b33331, 0x8000, 0x0000, {0x0d, 0x00, 0x01, 0xdc, 0x6c, 0x00, 0x00, 0x00} }; -static guint16 ver_rdaclif = 1; +static uint16_t ver_rdaclif = 1; -static dcerpc_sub_dissector rdaclif_dissectors[] = { +static const dcerpc_sub_dissector rdaclif_dissectors[] = { {0, "lookup", NULL, NULL}, {1, "replace", NULL, NULL}, {2, "get_access", NULL, NULL}, @@ -55,7 +55,7 @@ proto_register_rdaclif (void) NULL, HFILL}}, }; - static gint *ett[] = { + static int *ett[] = { &ett_rdaclif, }; proto_rdaclif = |