diff options
Diffstat (limited to 'epan/dissectors/packet-sadmind.c')
-rw-r--r-- | epan/dissectors/packet-sadmind.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/epan/dissectors/packet-sadmind.c b/epan/dissectors/packet-sadmind.c index e65d8046..28424d24 100644 --- a/epan/dissectors/packet-sadmind.c +++ b/epan/dissectors/packet-sadmind.c @@ -17,12 +17,12 @@ void proto_register_sadmind(void); void proto_reg_handoff_sadmind(void); -static int proto_sadmind = -1; -static int hf_sadmind_procedure_v1 = -1; -static int hf_sadmind_procedure_v2 = -1; -static int hf_sadmind_procedure_v3 = -1; +static int proto_sadmind; +static int hf_sadmind_procedure_v1; +static int hf_sadmind_procedure_v2; +static int hf_sadmind_procedure_v3; -static gint ett_sadmind = -1; +static int ett_sadmind; #define SADMIND_PROGRAM 100232 @@ -80,7 +80,7 @@ proto_register_sadmind(void) VALS(sadmind3_proc_vals), 0, NULL, HFILL }} }; - static gint *ett[] = { + static int *ett[] = { &ett_sadmind, }; |