changeset 20806:7f83031f1b97

Add missed 'break'.
author voroshil
date Thu, 09 Nov 2006 19:03:35 +0000
parents e5f38c16da31
children da9d37758410
files stream/stream_radio.c
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/stream/stream_radio.c	Thu Nov 09 18:25:42 2006 +0000
+++ b/stream/stream_radio.c	Thu Nov 09 19:03:35 2006 +0000
@@ -532,11 +532,13 @@
         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);