summaryrefslogtreecommitdiff
path: root/libavformat/aqtitledec.c
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2013-04-10 04:52:08 -0300
committerClément Bœsch <ubitux@gmail.com>2013-04-10 09:56:48 +0200
commit89388a953a51abd61efeb1d10f621d2ce408e44e (patch)
tree6c6c6f82c0fe4e46ec89f970a9c85ebcc6085d2f /libavformat/aqtitledec.c
parent2383068cbfac11aedd2f133b2d00b0c1cb58b5f9 (diff)
Replace all occurrences of PRI in sscanf() calls with SCN
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavformat/aqtitledec.c')
-rw-r--r--libavformat/aqtitledec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/aqtitledec.c b/libavformat/aqtitledec.c
index 325946c84d..a78fd814d7 100644
--- a/libavformat/aqtitledec.c
+++ b/libavformat/aqtitledec.c
@@ -70,7 +70,7 @@ static int aqt_read_header(AVFormatContext *s)
line[strcspn(line, "\r\n")] = 0;
- if (sscanf(line, "-->> %"PRId64, &frame) == 1) {
+ if (sscanf(line, "-->> %"SCNd64, &frame) == 1) {
new_event = 1;
pos = avio_tell(s->pb);
if (sub) {