From: Matthew Fernandez Date: Fri, 19 Aug 2022 14:53:34 +0000 (-0700) Subject: graphml2gv: fix error message referring to cvtgxl X-Git-Tag: 5.0.1~2^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=49d29b4466315c95662cfabc446269fcdb695d8e;p=graphviz graphml2gv: fix error message referring to cvtgxl 1d28d7d2b4d2b2551bd1f432aa175f54a69364a4 appears to have copy-pasted much of the initial code from cmd/tools/cvtgxl.c, accidentally retaining this usage message referring to the wrong tool. --- diff --git a/CHANGELOG.md b/CHANGELOG.md index c951274c5..6b2374afd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Generated SVG files no longer use `transparent` paint or color as this keyword does not exist in SVG 1.1, and instead use `none` or a zero-opacity color. - Unnecessary space in 'points' attribute for 'polyline' in SVG output +- `graphml2gv` no longer calls itself `cvtgxl` in error messages ### Added - GVContext::version() to lib/gvc++ diff --git a/cmd/tools/graphml2gv.c b/cmd/tools/graphml2gv.c index e666bf24c..7c538a183 100644 --- a/cmd/tools/graphml2gv.c +++ b/cmd/tools/graphml2gv.c @@ -773,7 +773,7 @@ int main(int argc, char **argv) graphviz_exit(rv); #else - fputs("cvtgxl: not configured for conversion from GXL to GV\n", stderr); + fputs("graphml2gv: not configured for conversion from GXL to GV\n", stderr); graphviz_exit(1); #endif }