aboutsummaryrefslogtreecommitdiffstats
path: root/packet-rsvp.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2002-05-18 02:05:47 +0000
committerGerald Combs <gerald@wireshark.org>2002-05-18 02:05:47 +0000
commit8682b694f1f6c8046e96b90015811dce3ba52ab4 (patch)
tree7b903ad1d4ec6110b6ab88d73f818c04335c03f3 /packet-rsvp.c
parent5a4e9fa396fcbc2608bd86fcf3ddc0fee3d1d248 (diff)
Add a "break;" after a "default:" to fix an MSVC++ compilation error.
svn path=/trunk/; revision=5498
Diffstat (limited to 'packet-rsvp.c')
-rw-r--r--packet-rsvp.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/packet-rsvp.c b/packet-rsvp.c
index 531d408c85..cf5a44721b 100644
--- a/packet-rsvp.c
+++ b/packet-rsvp.c
@@ -3,7 +3,7 @@
*
* (c) Copyright Ashok Narayanan <ashokn@cisco.com>
*
- * $Id: packet-rsvp.c,v 1.63 2002/05/16 20:11:32 ashokn Exp $
+ * $Id: packet-rsvp.c,v 1.64 2002/05/18 02:05:47 gerald Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -2134,6 +2134,7 @@ dissect_rsvp_flowspec (proto_tree *ti, tvbuff_t *tvb,
break;
default:
+ break;
}