Mercurial > mplayer.hg
changeset 6940:335d827e8201
10l bug (missing break;) found by Jim Hawkins <jim@jawkins.com>
author | arpi |
---|---|
date | Tue, 06 Aug 2002 19:45:59 +0000 |
parents | b24bd1ac022a |
children | a16a68266408 |
files | mplayer.c |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/mplayer.c Tue Aug 06 14:23:23 2002 +0000 +++ b/mplayer.c Tue Aug 06 19:45:59 2002 +0000 @@ -2390,9 +2390,9 @@ } #endif } break; - case MP_CMD_MUTE: { - mixer_mute(); - } + case MP_CMD_MUTE: + mixer_mute(); + break; case MP_CMD_LOADFILE : { play_tree_t* e = play_tree_new(); play_tree_add_file(e,cmd->args[0].v.s);