diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-05-04 09:57:29 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-05-04 09:57:29 +0000 |
commit | 2be776e06c1df4d54dd5076760ee34b031cc8e8d (patch) | |
tree | 4d147602adca4f99c279a69f7e394e222bd86ac0 /packet-netbios.c | |
parent | d1f7799520c44748a136492b7bf44c31431736ea (diff) | |
download | wireshark-2be776e06c1df4d54dd5076760ee34b031cc8e8d.tar.gz wireshark-2be776e06c1df4d54dd5076760ee34b031cc8e8d.tar.bz2 wireshark-2be776e06c1df4d54dd5076760ee34b031cc8e8d.zip |
Mark unused arguments as such.
svn path=/trunk/; revision=5384
Diffstat (limited to 'packet-netbios.c')
-rw-r--r-- | packet-netbios.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/packet-netbios.c b/packet-netbios.c index 5739df2d3b..7c52e03759 100644 --- a/packet-netbios.c +++ b/packet-netbios.c @@ -5,7 +5,7 @@ * * derived from the packet-nbns.c * - * $Id: packet-netbios.c,v 1.47 2002/05/02 02:42:17 guy Exp $ + * $Id: packet-netbios.c,v 1.48 2002/05/04 09:57:29 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -602,13 +602,14 @@ static void dissect_netb_status_query( tvbuff_t *tvb, int offset, proto_tree *t } -static void dissect_netb_terminate_trace( tvbuff_t *tvb, int offset, - proto_tree *tree) +static void dissect_netb_terminate_trace( tvbuff_t *tvb _U_, int offset _U_, + proto_tree *tree _U_) {/* Handle the TERMINATE TRACE command */ /* * XXX - are any of the fields in this message significant? + * The IBM NetBIOS document shows them as "Reserved". */ } |