aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorPascal Quantin <pascal.quantin@gmail.com>2013-06-02 18:01:14 +0000
committerPascal Quantin <pascal.quantin@gmail.com>2013-06-02 18:01:14 +0000
commit05a7a4562074fbcfafb16699cade4677524bcc12 (patch)
tree3893c97669e560442a080bf7ffffd64058b615db /epan
parent3368f333a4b12d9ae23ffb916ee69decc3ea8f10 (diff)
Remove unused cc_type parameter
svn path=/trunk/; revision=49696
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-mux27010.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-mux27010.c b/epan/dissectors/packet-mux27010.c
index 00a418fa73..3b37e672d1 100644
--- a/epan/dissectors/packet-mux27010.c
+++ b/epan/dissectors/packet-mux27010.c
@@ -721,8 +721,8 @@ getControlChannelValues(tvbuff_t *tvb, proto_tree *field_tree_ctr, int offset,
/*Get values information field*/
static int
-getFrameInformation(tvbuff_t *tvb, packet_info *pinfo, proto_tree *field_tree, int offset,
- guint16 length_info, struct controlchannel_type* cctype){
+getFrameInformation(tvbuff_t *tvb, packet_info *pinfo, proto_tree *field_tree,
+ int offset, guint16 length_info){
/*Get the data from information field as string*/
char *information_field = tvb_get_ephemeral_string(tvb,offset,length_info);
@@ -963,7 +963,7 @@ dissect_mux27010(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
}
/*Get and display information*/
- offset += getFrameInformation(tvb, pinfo, field_tree, offset, length_info, &cc_type);
+ offset += getFrameInformation(tvb, pinfo, field_tree, offset, length_info);
}
/*~~~~~~~~/Information~~~~~~~~*/