diff options
Diffstat (limited to 'epan/dissectors/packet-newmail.c')
-rw-r--r-- | epan/dissectors/packet-newmail.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/dissectors/packet-newmail.c b/epan/dissectors/packet-newmail.c index 03eb3e8a..c997e8c9 100644 --- a/epan/dissectors/packet-newmail.c +++ b/epan/dissectors/packet-newmail.c @@ -17,11 +17,11 @@ void proto_register_newmail(void); void proto_reg_handoff_newmail(void); /* Initialize the protocol and registered fields */ -static int proto_newmail = -1; -static int hf_newmail_payload = -1; +static int proto_newmail; +static int hf_newmail_payload; /* Initialize the subtree pointers */ -static gint ett_newmail = -1; +static int ett_newmail; static dissector_handle_t newmail_handle; @@ -65,7 +65,7 @@ proto_register_newmail(void) }; /* Setup protocol subtree array */ - static gint *ett[] = { + static int *ett[] = { &ett_newmail, }; |