[vlc-commits] fourcc: remove `break` after `return`
Eric Engestrom
git at videolan.org
Sat Apr 2 17:13:33 CEST 2016
vlc | branch: master | Eric Engestrom <eric at engestrom.ch> | Sat Apr 2 15:43:27 2016 +0100| [c773022d3ad9a7348da0af5ce2b77101ada98470] | committer: Rémi Denis-Courmont
fourcc: remove `break` after `return`
Signed-off-by: Eric Engestrom <eric at engestrom.ch>
Signed-off-by: Rémi Denis-Courmont <remi at remlab.net>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=c773022d3ad9a7348da0af5ce2b77101ada98470
---
src/misc/fourcc.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/src/misc/fourcc.c b/src/misc/fourcc.c
index 84cd034..51c36a1 100644
--- a/src/misc/fourcc.c
+++ b/src/misc/fourcc.c
@@ -153,7 +153,6 @@ vlc_fourcc_t vlc_fourcc_GetCodecAudio( vlc_fourcc_t i_fourcc, int i_bits )
return VLC_CODEC_S16L;
case 3:
return VLC_CODEC_S24L;
- break;
case 4:
return VLC_CODEC_S32L;
default:
More information about the vlc-commits
mailing list