diff options
author | voroshil <voroshil@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-11-09 19:03:35 +0000 |
---|---|---|
committer | voroshil <voroshil@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-11-09 19:03:35 +0000 |
commit | 3843d10a5e7132cc6413012f264b479d193b58e1 (patch) | |
tree | 29623456a494aaf2c7c4e5fefc4ba78631cf4e4b | |
parent | 66e1b5c8ed24d6d44098971168486f96cabd8dba (diff) | |
download | mpv-3843d10a5e7132cc6413012f264b479d193b58e1.tar.bz2 mpv-3843d10a5e7132cc6413012f264b479d193b58e1.tar.xz |
Add missed 'break'.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20822 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r-- | stream/stream_radio.c | 2 |
1 files changed, 2 insertions, 0 deletions
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); |