aboutsummaryrefslogtreecommitdiffstats
path: root/packet-rsvp.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-02-02 11:52:41 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-02-02 11:52:41 +0000
commit0d17091817f770f08894954d1ffcb472af9ee200 (patch)
tree72135301754432e0aeca9b2fd3e126a5f624a65d /packet-rsvp.c
parent900bc8d35d8da3dfd51209435cf509adca137a58 (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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@4678 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 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;
}
}