aboutsummaryrefslogtreecommitdiffstats
path: root/packet-asap.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-05-02 07:49:43 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-05-02 07:49:43 +0000
commit70b7148b80f8e3b312b942f7df3603130de5b94b (patch)
treeafc88aa0b5c7e5b5c2f5e8c25ed1b5f28e35c369 /packet-asap.c
parentaf7ef3750ff299fd1464e40691743e6231018b86 (diff)
From Joerg Mayer: get rid of an unused argument.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@5347 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-asap.c')
-rw-r--r--packet-asap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-asap.c b/packet-asap.c
index cd4e7c7f93..e1a6624d48 100644
--- a/packet-asap.c
+++ b/packet-asap.c
@@ -5,7 +5,7 @@
*
* Copyright 2002, Michael Tuexen <Michael.Tuexen@icn.siemens.de>
*
- * $Id: packet-asap.c,v 1.2 2002/04/29 08:20:05 guy Exp $
+ * $Id: packet-asap.c,v 1.3 2002/05/02 07:49:43 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -375,7 +375,7 @@ static const value_string asap_message_type_values[] = {
{ 0, NULL } };
static void
-dissect_asap_message(tvbuff_t *message_tvb, packet_info *pinfo, proto_tree *tree, proto_tree *asap_tree)
+dissect_asap_message(tvbuff_t *message_tvb, proto_tree *asap_tree)
{
tvbuff_t *parameters_tvb;
guint8 type, flags;
@@ -423,7 +423,7 @@ dissect_asap(tvbuff_t *message_tvb, packet_info *pinfo, proto_tree *tree)
asap_tree = NULL;
};
/* dissect the message */
- dissect_asap_message(message_tvb, pinfo, tree, asap_tree);
+ dissect_asap_message(message_tvb, asap_tree);
}
/* Register the protocol with Ethereal */