]> granicus.if.org Git - graphviz/commitdiff
graphml2gv: fix error message referring to cvtgxl
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Fri, 19 Aug 2022 14:53:34 +0000 (07:53 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 20 Aug 2022 01:18:38 +0000 (18:18 -0700)
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.

CHANGELOG.md
cmd/tools/graphml2gv.c

index c951274c5a61f5ca075eb7750036834f9e839054..6b2374afd6b35835ac2f0d80d3eb5c7c3c92132c 100644 (file)
@@ -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++
index e666bf24ce8c951c6823589b12e772d6b85ebf87..7c538a1830d2041b18e72cff26a8053feb6f2e85 100644 (file)
@@ -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
 }