[polypaudio-commits] r468 - /trunk/polyp/sample-util.c

svnmailer-noreply at 0pointer.de svnmailer-noreply at 0pointer.de
Mon Jan 30 03:49:04 PST 2006


Author: ossman
Date: Mon Jan 30 12:49:03 2006
New Revision: 468

URL: http://0pointer.de/cgi-bin/viewcvs.cgi?rev=468&root=polypaudio&view=rev
Log:
Breaks missing from conversion to a switch statement.

Modified:
    trunk/polyp/sample-util.c

Modified: trunk/polyp/sample-util.c
URL: http://0pointer.de/cgi-bin/viewcvs.cgi/trunk/polyp/sample-util.c?rev=468&root=polypaudio&r1=467&r2=468&view=diff
==============================================================================
--- trunk/polyp/sample-util.c (original)
+++ trunk/polyp/sample-util.c Mon Jan 30 12:49:03 2006
@@ -270,6 +270,7 @@
                 if (++channel >= spec->channels)
                     channel = 0;
             }
+            break;
         }
             
         case PA_SAMPLE_U8: {
@@ -291,6 +292,7 @@
                 if (++channel >= spec->channels)
                     channel = 0;
             }
+            break;
         }
             
         case PA_SAMPLE_FLOAT32NE: {
@@ -314,6 +316,7 @@
                 t = d + channel;
                 oil_scalarmult_f32(t, skip, t, skip, &v, n);
             }
+            break;
         }
 
         default:




More information about the pulseaudio-commits mailing list