From 22db575adc789c9bf6deabefe0843addc7ed2910 Mon Sep 17 00:00:00 2001 From: Pierre Ossman Date: Mon, 30 Jan 2006 11:49:03 +0000 Subject: Breaks missing from conversion to a switch statement. git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@468 fefdeb5f-60dc-0310-8127-8f9354f1896f --- polyp/sample-util.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'polyp/sample-util.c') diff --git a/polyp/sample-util.c b/polyp/sample-util.c index 2310f3cb..52974c46 100644 --- a/polyp/sample-util.c +++ b/polyp/sample-util.c @@ -270,6 +270,7 @@ void pa_volume_memchunk(pa_memchunk*c, const pa_sample_spec *spec, const pa_cvol if (++channel >= spec->channels) channel = 0; } + break; } case PA_SAMPLE_U8: { @@ -291,6 +292,7 @@ void pa_volume_memchunk(pa_memchunk*c, const pa_sample_spec *spec, const pa_cvol if (++channel >= spec->channels) channel = 0; } + break; } case PA_SAMPLE_FLOAT32NE: { @@ -314,6 +316,7 @@ void pa_volume_memchunk(pa_memchunk*c, const pa_sample_spec *spec, const pa_cvol t = d + channel; oil_scalarmult_f32(t, skip, t, skip, &v, n); } + break; } default: -- cgit