diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-07-07 11:35:59 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-07-07 11:35:59 +0200 |
commit | b7ce510003275460a9b02361a8c98bfec6fa2945 (patch) | |
tree | 724100234911165f50bce4621ba25cb5eb5e5d9e /tools/graph2dot.c | |
parent | 7bd417c22a90a712df57cacfa5b09c1fb4f6183a (diff) | |
parent | a4baf96abd64cda68e3e4692b182bdf60745a14d (diff) | |
download | ffmpeg-b7ce510003275460a9b02361a8c98bfec6fa2945.tar.gz |
Merge commit 'a4baf96abd64cda68e3e4692b182bdf60745a14d'
* commit 'a4baf96abd64cda68e3e4692b182bdf60745a14d':
avprobe: rename the prettyprint structures
tools: Wording and formatting cosmetics
Conflicts:
avprobe.c
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'tools/graph2dot.c')
-rw-r--r-- | tools/graph2dot.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/graph2dot.c b/tools/graph2dot.c index 167c49ba8d..2daceb6152 100644 --- a/tools/graph2dot.c +++ b/tools/graph2dot.c @@ -36,7 +36,7 @@ static void usage(void) { - printf("Convert a libavfilter graph to a dot file\n"); + printf("Convert a libavfilter graph to a dot file.\n"); printf("Usage: graph2dot [OPTIONS]\n"); printf("\n" "Options:\n" @@ -137,7 +137,7 @@ int main(int argc, char **argv) infilename = "/dev/stdin"; infile = fopen(infilename, "r"); if (!infile) { - fprintf(stderr, "Impossible to open input file '%s': %s\n", + fprintf(stderr, "Failed to open input file '%s': %s\n", infilename, strerror(errno)); return 1; } @@ -146,7 +146,7 @@ int main(int argc, char **argv) outfilename = "/dev/stdout"; outfile = fopen(outfilename, "w"); if (!outfile) { - fprintf(stderr, "Impossible to open output file '%s': %s\n", + fprintf(stderr, "Failed to open output file '%s': %s\n", outfilename, strerror(errno)); return 1; } @@ -179,7 +179,7 @@ int main(int argc, char **argv) avfilter_register_all(); if (avfilter_graph_parse(graph, graph_string, NULL, NULL, NULL) < 0) { - fprintf(stderr, "Impossible to parse the graph description\n"); + fprintf(stderr, "Failed to parse the graph description\n"); return 1; } |