mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-03-22 02:48:37 +00: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,
|
av_get_channel_layout_string(buf, sizeof(buf), -1,
|
||||||
link->channel_layout);
|
link->channel_layout);
|
||||||
fprintf(outfile,
|
fprintf(outfile,
|
||||||
" [ label= \"fmt:%s sr:%"PRId64 " cl:%s\" ]",
|
" [ label= \"fmt:%s sr:%d cl:%s\" ]",
|
||||||
av_get_sample_fmt_name(link->format),
|
av_get_sample_fmt_name(link->format),
|
||||||
link->sample_rate, buf);
|
link->sample_rate, buf);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user