diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-02-02 11:52:41 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-02-02 11:52:41 +0000 |
commit | a758e63774c55b69f0fe3b669dc38ed7a2996e71 (patch) | |
tree | 72135301754432e0aeca9b2fd3e126a5f624a65d /packet-rsvp.c | |
parent | 0e2c3748bdcc0c0895a60e5eb1d1088b870409e1 (diff) | |
download | wireshark-a758e63774c55b69f0fe3b669dc38ed7a2996e71.tar.gz wireshark-a758e63774c55b69f0fe3b669dc38ed7a2996e71.tar.bz2 wireshark-a758e63774c55b69f0fe3b669dc38ed7a2996e71.zip |
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.c | 3 |
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; } } |