From 3843d10a5e7132cc6413012f264b479d193b58e1 Mon Sep 17 00:00:00 2001 From: voroshil Date: Thu, 9 Nov 2006 19:03:35 +0000 Subject: Add missed 'break'. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20822 b3059339-0415-0410-9bf9-f77b7e298cf2 --- stream/stream_radio.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'stream/stream_radio.c') diff --git a/stream/stream_radio.c b/stream/stream_radio.c index 4f11a22876..480674fca9 100644 --- a/stream/stream_radio.c +++ b/stream/stream_radio.c @@ -532,11 +532,13 @@ static inline int set_frequency(radio_priv_t* priv,float frequency){ case RADIO_DRIVER_V4L: if(set_frequency_v4l(priv,frequency)!=STREAM_OK) return STREAM_ERROR; + break; #endif #ifdef HAVE_RADIO_V4L2 case RADIO_DRIVER_V4L2: if(set_frequency_v4l2(priv,frequency)!=STREAM_OK) return STREAM_ERROR; + break; #endif default: mp_msg(MSGT_RADIO,MSGL_ERR,MSGTR_RADIO_DriverUnknownId,priv->driver); -- cgit v1.2.3