summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2012-07-04 16:55:13 +0200
committerDiego Biurrun <diego@biurrun.de>2012-07-04 18:12:48 +0200
commitfa2d7473528c601c1076957d474ab7550d588828 (patch)
tree95839919045e0cb6e4f1987502a0bee1abfb5942 /tools
parent557519189f0c78bb8d9b7d91f92908fd6ff8f6f3 (diff)
graph2dot: fix printf format specifier
tools/graph2dot.c:85: warning: format ‘%lld’ expects type ‘long long int’, but argument 4 has type ‘int’
Diffstat (limited to 'tools')
-rw-r--r--tools/graph2dot.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/graph2dot.c b/tools/graph2dot.c
index a52416db31..6ea2f3206d 100644
--- a/tools/graph2dot.c
+++ b/tools/graph2dot.c
@@ -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);
}