mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
graph2dot: fix printf format specifier
tools/graph2dot.c:85: warning: format ‘%lld’ expects type ‘long long int’, but argument 4 has type ‘int’
This commit is contained in:
parent
557519189f
commit
fa2d747352
@ -80,7 +80,7 @@ static void print_digraph(FILE *outfile, AVFilterGraph *graph)
|
||||
av_get_channel_layout_string(buf, sizeof(buf), -1,
|
||||
link->channel_layout);
|
||||
fprintf(outfile,
|
||||
" [ label= \"fmt:%s sr:%"PRId64 " cl:%s\" ]",
|
||||
" [ label= \"fmt:%s sr:%d cl:%s\" ]",
|
||||
av_get_sample_fmt_name(link->format),
|
||||
link->sample_rate, buf);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user