]> granicus.if.org Git - graphviz/commitdiff
Give better argument name to edgeType
authorMark Hansen <markhansen@google.com>
Mon, 14 Nov 2022 10:49:34 +0000 (21:49 +1100)
committerMark Hansen <markhansen@google.com>
Mon, 14 Nov 2022 10:52:49 +0000 (21:52 +1100)
lib/common/utils.c

index ac6b6becd8ce345dd257f9a1bec6c584098667f7..d30ca3c8d583b815f167882504eb2766b44afc9f 100644 (file)
@@ -1594,10 +1594,9 @@ bool overlap_edge(edge_t *e, boxf b)
 /* edgeType:
  * Convert string to edge type.
  */
-static int edgeType(const char *s, int dflt)
-{
+static int edgeType(const char *s, int defaultValue) {
     if (s == NULL || strcmp(s, "") == 0) {
-       return dflt;
+        return defaultValue;
     }
 
     if (*s == '0') { /* false */
@@ -1629,7 +1628,7 @@ static int edgeType(const char *s, int dflt)
     }
 
     agerr(AGWARN, "Unknown \"splines\" value: \"%s\" - ignored\n", s);
-    return dflt;
+    return defaultValue;
 }
 
 /* setEdgeType: