From a758e63774c55b69f0fe3b669dc38ed7a2996e71 Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Sat, 2 Feb 2002 11:52:41 +0000 Subject: [PATCH] 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 --- packet-rsvp.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 * - * $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 @@ -790,6 +790,7 @@ find_rsvp_session_tempfilt(tvbuff_t *tvb, int hdr_offset, int *session_offp, int t_off = off; break; default: + break; } }