summaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-sipfrag.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--epan/dissectors/packet-sipfrag.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/epan/dissectors/packet-sipfrag.c b/epan/dissectors/packet-sipfrag.c
index 2e5f3918..5a82e9f0 100644
--- a/epan/dissectors/packet-sipfrag.c
+++ b/epan/dissectors/packet-sipfrag.c
@@ -21,11 +21,11 @@
void proto_register_sipfrag(void);
/* Initialize the protocol and registered fields. */
-static int proto_sipfrag = -1;
-static int hf_sipfrag_line = -1;
+static int proto_sipfrag;
+static int hf_sipfrag_line;
/* Protocol subtree. */
-static int ett_sipfrag = -1;
+static int ett_sipfrag;
void proto_reg_handoff_sipfrag(void);
@@ -36,11 +36,11 @@ static int dissect_sipfrag(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
{
proto_tree *sipfrag_tree;
proto_item *ti;
- gint offset = 0;
- gint next_offset;
+ int offset = 0;
+ int next_offset;
int linelen;
char *string;
- gint lines = 0;
+ int lines = 0;
/* Append this protocol name rather than replace. */
col_append_str(pinfo->cinfo, COL_PROTOCOL, "/sipfrag");
@@ -93,7 +93,7 @@ void proto_register_sipfrag(void)
},
};
- static gint *ett[] =
+ static int *ett[] =
{
&ett_sipfrag
};