[MPlayer-cvslog] r20822 - trunk/stream/stream_radio.c

voroshil subversion at mplayerhq.hu
Thu Nov 9 20:03:35 CET 2006


Author: voroshil
Date: Thu Nov  9 20:03:35 2006
New Revision: 20822

Modified:
   trunk/stream/stream_radio.c

Log:
Add missed 'break'.



Modified: trunk/stream/stream_radio.c
==============================================================================
--- trunk/stream/stream_radio.c	(original)
+++ trunk/stream/stream_radio.c	Thu Nov  9 20:03:35 2006
@@ -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);



More information about the MPlayer-cvslog mailing list