From 363307813e834314e85ac833dc17b4a8527c8559 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Fri, 14 Sep 2012 11:27:23 +0200 Subject: [PATCH] tools/graphdot: unbreak syntax Fix regression introduced in f054dbee6cc5195ba8f37823a494dab2d26e7cca. +10.23l. --- tools/graph2dot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/graph2dot.c b/tools/graph2dot.c index 14f0e7a024..c4a50a8278 100644 --- a/tools/graph2dot.c +++ b/tools/graph2dot.c @@ -97,7 +97,7 @@ static void print_digraph(FILE *outfile, AVFilterGraph *graph) link->sample_rate, buf, link->time_base.num, link->time_base.den); } - fprintf(outfile, "\n]"); + fprintf(outfile, "\" ];\n"); } } }