diff options
author | James Almer <jamrial@gmail.com> | 2013-04-10 04:52:08 -0300 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2013-04-10 09:56:48 +0200 |
commit | 89388a953a51abd61efeb1d10f621d2ce408e44e (patch) | |
tree | 6c6c6f82c0fe4e46ec89f970a9c85ebcc6085d2f /libavformat/aqtitledec.c | |
parent | 2383068cbfac11aedd2f133b2d00b0c1cb58b5f9 (diff) | |
download | ffmpeg-89388a953a51abd61efeb1d10f621d2ce408e44e.tar.gz |
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.c | 2 |
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) { |