From 89388a953a51abd61efeb1d10f621d2ce408e44e Mon Sep 17 00:00:00 2001 From: James Almer Date: Wed, 10 Apr 2013 04:52:08 -0300 Subject: Replace all occurrences of PRI in sscanf() calls with SCN Signed-off-by: James Almer --- libavformat/rpl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/rpl.c') diff --git a/libavformat/rpl.c b/libavformat/rpl.c index dcc7950..0bc4b97 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, -- cgit v1.1