aboutsummaryrefslogtreecommitdiffstats
path: root/packet-rsvp.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-02-02 11:52:41 +0000
committerGuy Harris <guy@alum.mit.edu>2002-02-02 11:52:41 +0000
commita758e63774c55b69f0fe3b669dc38ed7a2996e71 (patch)
tree72135301754432e0aeca9b2fd3e126a5f624a65d /packet-rsvp.c
parent0e2c3748bdcc0c0895a60e5eb1d1088b870409e1 (diff)
Put in a "break" statement after the "default:" clause; GCC may allow
you to have a label with no statement after it, but other C compilers (e.g, MSVC++ 6.0) don't. svn path=/trunk/; revision=4678
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 62534a56ac..55041398e3 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.53 2002/01/31 22:42:38 ashokn Exp $
+ * $Id: packet-rsvp.c,v 1.54 2002/02/02 11:52:41 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -790,6 +790,7 @@ find_rsvp_session_tempfilt(tvbuff_t *tvb, int hdr_offset, int *session_offp, int
t_off = off;
break;
default:
+ break;
}
}