diff options
Diffstat (limited to 'epan/dissectors/packet-dcerpc-ubikvote.c')
-rw-r--r-- | epan/dissectors/packet-dcerpc-ubikvote.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/epan/dissectors/packet-dcerpc-ubikvote.c b/epan/dissectors/packet-dcerpc-ubikvote.c index 25b90111..a6b4ffaf 100644 --- a/epan/dissectors/packet-dcerpc-ubikvote.c +++ b/epan/dissectors/packet-dcerpc-ubikvote.c @@ -21,18 +21,18 @@ void proto_register_ubikvote (void); void proto_reg_handoff_ubikvote (void); -static int proto_ubikvote = -1; -static int hf_ubikvote_opnum = -1; +static int proto_ubikvote; +static int hf_ubikvote_opnum; -static gint ett_ubikvote = -1; +static int ett_ubikvote; static e_guid_t uuid_ubikvote = { 0x4d37f2dd, 0xed43, 0x0003, { 0x02, 0xc0, 0x37, 0xcf, 0x1e, 0x00, 0x00, 0x00 } }; -static guint16 ver_ubikvote = 4; +static uint16_t ver_ubikvote = 4; -static dcerpc_sub_dissector ubikvote_dissectors[] = { +static const dcerpc_sub_dissector ubikvote_dissectors[] = { { 0, "Beacon", NULL, NULL}, { 1, "Debug", NULL, NULL}, { 2, "SDebug", NULL, NULL}, @@ -53,7 +53,7 @@ proto_register_ubikvote (void) NULL, 0x0, NULL, HFILL }} }; - static gint *ett[] = { + static int *ett[] = { &ett_ubikvote, }; proto_ubikvote = proto_register_protocol ("DCE DFS FLDB UBIKVOTE", "UBIKVOTE", "ubikvote"); |