]> granicus.if.org Git - graphviz/commitdiff
take a const pointer in refstrbind
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 4 Jul 2021 04:04:05 +0000 (21:04 -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/refstr.c

index d3317065d7d70c8abbfa1618725230e61d341aac..a534618226cb5687e062a16b1b95585b76a1db08 100644 (file)
@@ -79,7 +79,7 @@ static refstr_t *refsymbind(Dict_t * strdict, const char *s)
     return r;
 }
 
-static char *refstrbind(Dict_t * strdict, char *s)
+static char *refstrbind(Dict_t * strdict, const char *s)
 {
     refstr_t *r;
     r = refsymbind(strdict, s);