diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-03-31 21:09:00 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-03-31 21:09:00 +0000 |
commit | 8ed5e80e14c8f56a39f979cc9727b26e040ba8e9 (patch) | |
tree | 416401738051c35ebdc2e601bfc0cddd8459be26 /xdlc.c | |
parent | 2eb1990b0b5f906ed82f249fe2a1973ef4a8161d (diff) | |
download | wireshark-8ed5e80e14c8f56a39f979cc9727b26e040ba8e9.tar.gz wireshark-8ed5e80e14c8f56a39f979cc9727b26e040ba8e9.tar.bz2 wireshark-8ed5e80e14c8f56a39f979cc9727b26e040ba8e9.zip |
From Joerg Mayer: get rid of unused function arguments.
svn path=/trunk/; revision=5053
Diffstat (limited to 'xdlc.c')
-rw-r--r-- | xdlc.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2,7 +2,7 @@ * Routines for use by various SDLC-derived protocols, such as HDLC * and its derivatives LAPB, IEEE 802.2 LLC, etc.. * - * $Id: xdlc.c,v 1.17 2002/01/21 07:36:48 guy Exp $ + * $Id: xdlc.c,v 1.18 2002/03/31 21:09:00 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -159,7 +159,7 @@ static const value_string modifier_vals_resp[] = { }; int -get_xdlc_control(const u_char *pd, int offset, int is_response, int is_extended) +get_xdlc_control(const u_char *pd, int offset, int is_extended) { guint16 control; |