diff options
Diffstat (limited to 'epan/dissectors/packet-rstat.c')
-rw-r--r-- | epan/dissectors/packet-rstat.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/epan/dissectors/packet-rstat.c b/epan/dissectors/packet-rstat.c index d5c8d63c..6390d208 100644 --- a/epan/dissectors/packet-rstat.c +++ b/epan/dissectors/packet-rstat.c @@ -17,13 +17,13 @@ void proto_register_rstat(void); void proto_reg_handoff_rstat(void); -static int proto_rstat = -1; -static int hf_rstat_procedure_v1 = -1; -static int hf_rstat_procedure_v2 = -1; -static int hf_rstat_procedure_v3 = -1; -static int hf_rstat_procedure_v4 = -1; +static int proto_rstat; +static int hf_rstat_procedure_v1; +static int hf_rstat_procedure_v2; +static int hf_rstat_procedure_v3; +static int hf_rstat_procedure_v4; -static gint ett_rstat = -1; +static int ett_rstat; #define RSTAT_PROGRAM 100001 @@ -121,7 +121,7 @@ proto_register_rstat(void) VALS(rstat4_proc_vals), 0, NULL, HFILL }} }; - static gint *ett[] = { + static int *ett[] = { &ett_rstat, }; |