# HG changeset patch # User eyck # Date 1012763842 0 # Node ID c8bf6fd27d68f974b7b29283c3bd1f27e7e8b949 # Parent 83128eed25f18d528c9932e1ee129889b0a9a4ec too many arguments to sscan in subdetect. diff -r 83128eed25f1 -r c8bf6fd27d68 subreader.c --- a/subreader.c Sun Feb 03 19:13:00 2002 +0000 +++ b/subreader.c Sun Feb 03 19:17:22 2002 +0000 @@ -479,7 +479,7 @@ 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;}