1
mirror of https://github.com/mpv-player/mpv synced 2024-09-05 02:48:21 +02:00

Add missing break that caused an irritating error message all the time when using slave mode.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14326 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2005-01-03 13:56:48 +00:00
parent 0d19ef2098
commit 2543b1bf86

View File

@ -647,6 +647,7 @@ mp_input_parse_cmd(char* str) {
} break;
case -1:
ptr = NULL;
break;
default :
mp_msg(MSGT_INPUT,MSGL_ERR,"Unknown argument %d\n",i);
}