From 094cd24bf4cb1e5c3073119d4ed958577797a567 Mon Sep 17 00:00:00 2001 From: eyck Date: Sun, 3 Feb 2002 19:17:22 +0000 Subject: too many arguments to sscan in subdetect. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4520 b3059339-0415-0410-9bf9-f77b7e298cf2 --- subreader.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'subreader.c') diff --git a/subreader.c b/subreader.c index 7a71a68131..fd9cafc794 100644 --- a/subreader.c +++ b/subreader.c @@ -479,7 +479,7 @@ int sub_autodetect (FILE *fd) { if (sscanf (line, "{%d}{%d}", &i, &i)==2) {sub_uses_time=0;return SUB_MICRODVD;} - if (sscanf (line, "{%d}{}", &i, &i)==1) + if (sscanf (line, "{%d}{}", &i)==1) {sub_uses_time=0;return SUB_MICRODVD;} if (sscanf (line, "%d:%d:%d.%d,%d:%d:%d.%d", &i, &i, &i, &i, &i, &i, &i, &i)==8) {sub_uses_time=1;return SUB_SUBRIP;} -- cgit v1.2.3