summaryrefslogtreecommitdiff
path: root/libavformat/srtdec.c
diff options
context:
space:
mode:
authorRodger Combs <rodger.combs@gmail.com>2016-06-25 15:53:11 -0500
committerRodger Combs <rodger.combs@gmail.com>2016-06-25 15:53:11 -0500
commit6ee7adb881e4513ebacf76ba97d413fcbd6cf3e3 (patch)
treecce29aeab8d9d5aec348da89113f432f6d3276e1 /libavformat/srtdec.c
parentaf7e2734b9c1cd5b09208e343154ffc89a64d2c4 (diff)
lavf/srtdec: fix indent
Diffstat (limited to 'libavformat/srtdec.c')
-rw-r--r--libavformat/srtdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/srtdec.c b/libavformat/srtdec.c
index 9ab7a4ef36..067db63f21 100644
--- a/libavformat/srtdec.c
+++ b/libavformat/srtdec.c
@@ -54,7 +54,7 @@ static int srt_probe(AVProbeData *p)
return 0;
pbuf = buf;
if (buf[0] == '-')
- pbuf++;
+ pbuf++;
if (pbuf[0] >= '0' && pbuf[0] <= '9' && strstr(buf, " --> ")
&& sscanf(buf, "%*d:%*d:%*d%*1[,.]%*d --> %*d:%*d:%*d%*1[,.]%d", &v) == 1)
return AVPROBE_SCORE_MAX;