[vlc-commits] hotkeys: missing break

Rémi Denis-Courmont git at videolan.org
Sun Jul 23 16:53:19 CEST 2017


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Sun Jul 23 16:42:01 2017 +0300| [a465a234730696bf060fe081d7bb21b09156da6d] | committer: Rémi Denis-Courmont

hotkeys: missing break

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=a465a234730696bf060fe081d7bb21b09156da6d
---

 modules/control/hotkeys.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/modules/control/hotkeys.c b/modules/control/hotkeys.c
index 84b6b77fdf..10e3f6f511 100644
--- a/modules/control/hotkeys.c
+++ b/modules/control/hotkeys.c
@@ -1333,7 +1333,6 @@ static int PutAction( intf_thread_t *p_intf, input_thread_t *p_input,
         case ACTIONID_SUBTITLE_TEXT_SCALE_DOWN:
         case ACTIONID_SUBTITLE_TEXT_SCALE_UP:
         case ACTIONID_SUBTITLE_TEXT_SCALE_NORMAL:
-        {
             if( p_vout )
             {
                 int i_scale;
@@ -1350,7 +1349,7 @@ static int PutAction( intf_thread_t *p_intf, input_thread_t *p_input,
                 var_SetInteger( p_playlist, "sub-text-scale", i_scale );
                 DisplayMessage( p_vout, _( "Subtitle text scale %d%%" ), i_scale );
             }
-        }
+            break;
 
         /* Input + video output */
         case ACTIONID_POSITION:



More information about the vlc-commits mailing list