aboutsummaryrefslogtreecommitdiffstats
path: root/packet-rsvp.c
diff options
context:
space:
mode:
authorgerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2002-05-18 02:05:47 +0000
committergerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2002-05-18 02:05:47 +0000
commitad0f6ece1c64f80ed57c482e75ff084580825f8c (patch)
tree7b903ad1d4ec6110b6ab88d73f818c04335c03f3 /packet-rsvp.c
parentefae2cf973e12138bab685b666af725ede30a5d9 (diff)
Add a "break;" after a "default:" to fix an MSVC++ compilation error.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@5498 f5534014-38df-0310-8fa8-9805f1628bb7
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;
}