]> granicus.if.org Git - graphviz/commitdiff
take a const pointer as the first argument to agcanonhtmlstr
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 4 Jul 2021 04:18:44 +0000 (21:18 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 18 Jul 2021 00:31:35 +0000 (17:31 -0700)
This function does not modify its string argument, so it is more accurate to
qualify it as const. Related to #634.

lib/cgraph/write.c

index a23c5e715606fee01d7a73b2658c52b59615068a..9515ab5efd0ff1d49c9a220d8cb5ce3b707e6a32 100644 (file)
@@ -139,7 +139,7 @@ static char *_agstrcanon(char *arg, char *buf)
 /* agcanonhtmlstr:
  * Canonicalize html strings. 
  */
-static char *agcanonhtmlstr(char *arg, char *buf)
+static char *agcanonhtmlstr(const char *arg, char *buf)
 {
     sprintf(buf, "<%s>", arg);
     return buf;