aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ansi_637.c
diff options
context:
space:
mode:
authorstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2008-06-23 21:28:44 +0000
committerstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2008-06-23 21:28:44 +0000
commit205b7586a44c9ca539e899ed69695b631a9d6415 (patch)
tree1a24724b9fa6073e72ef95c86e778493728ec54e /epan/dissectors/packet-ansi_637.c
parent43d2dec3f31726cf7a3d8efb8be8b8645a7ca090 (diff)
Removed argument names in function pointers to avoid shadowing warnings.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@25558 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-ansi_637.c')
-rw-r--r--epan/dissectors/packet-ansi_637.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-ansi_637.c b/epan/dissectors/packet-ansi_637.c
index 2c0825db6d..dec4671de1 100644
--- a/epan/dissectors/packet-ansi_637.c
+++ b/epan/dissectors/packet-ansi_637.c
@@ -1537,7 +1537,7 @@ static gint ett_ansi_637_trans_msg[NUM_TRANS_MSG_TYPE];
static gboolean
dissect_ansi_637_tele_param(tvbuff_t *tvb, proto_tree *tree, guint32 *offset)
{
- void (*param_fcn)(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset) = NULL;
+ void (*param_fcn)(tvbuff_t *, proto_tree *, guint, guint32) = NULL;
guint8 oct;
guint8 len;
guint32 curr_offset;
@@ -1727,7 +1727,7 @@ dissect_ansi_637_tele(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
static gboolean
dissect_ansi_637_trans_param(tvbuff_t *tvb, proto_tree *tree, guint32 *offset)
{
- void (*param_fcn)(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset, gchar *add_string, int string_len) = NULL;
+ void (*param_fcn)(tvbuff_t *, proto_tree *, guint, guint32, gchar *, int) = NULL;
guint8 oct;
guint8 len;
guint32 curr_offset;