From bfdf5029f0585a95c62cecdeba5c0c22265d4d8c Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Sat, 4 Nov 2000 07:38:19 +0000 Subject: Microsoft Visual C++, unlike GCC, doesn't like it if you have no statements whatsoever in a "case" or "default" clause; add a "break" statement to keep it happy. (Other compilers may also be less forgiving than GCC.) svn path=/trunk/; revision=2560 --- packet-wtp.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/packet-wtp.c b/packet-wtp.c index ca57c64a82..4f9e2df88d 100644 --- a/packet-wtp.c +++ b/packet-wtp.c @@ -3,7 +3,7 @@ * * Routines to dissect WTP component of WAP traffic. * - * $Id: packet-wtp.c,v 1.1 2000/11/04 03:30:40 guy Exp $ + * $Id: packet-wtp.c,v 1.2 2000/11/04 07:38:19 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs @@ -228,6 +228,7 @@ dissect_wtp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) col_add_fstr(fdata, COL_PROTOCOL, "WTLS+WTP+WSP" ); break; default: + break; } } @@ -257,7 +258,7 @@ dissect_wtp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) break; default: - + break; }; if( fRID ) { -- cgit v1.2.3