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/rpl.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/rpl.c')
-rw-r--r-- | libavformat/rpl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rpl.c b/libavformat/rpl.c index dcc79501d8..0bc4b9767f 100644 --- a/libavformat/rpl.c +++ b/libavformat/rpl.c @@ -255,7 +255,7 @@ static int rpl_read_header(AVFormatContext *s) for (i = 0; !error && i < number_of_chunks; i++) { int64_t offset, video_size, audio_size; error |= read_line(pb, line, sizeof(line)); - if (3 != sscanf(line, "%"PRId64" , %"PRId64" ; %"PRId64, + if (3 != sscanf(line, "%"SCNd64" , %"SCNd64" ; %"SCNd64, &offset, &video_size, &audio_size)) error = -1; av_add_index_entry(vst, offset, i * rpl->frames_per_chunk, |