]> granicus.if.org Git - graphviz/commitdiff
swap an unnecessary MAX call for fmax
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Mon, 29 Mar 2021 04:55:40 +0000 (21:55 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 4 Apr 2021 16:48:10 +0000 (09:48 -0700)
lib/twopigen/circle.c

index 747e00a093bb2547d01f0b0a8b42192e58da20c8..cfd809f1bf2273102fd443c9310abae88d3bc798 100644 (file)
@@ -12,6 +12,7 @@
 #include    <ctype.h>
 #include    <inttypes.h>
 #include    <limits.h>
+#include    <math.h>
 #include    <stdbool.h>
 #include    <stdint.h>
 #include    <stdlib.h>
@@ -289,7 +290,7 @@ getRankseps (Agraph_t* g, uint64_t maxrank)
 
     if ((p = late_string(g, agfindgraphattr(g->root, "ranksep"), NULL))) {
        while (rk <= maxrank && (d = strtod (p, &endp)) > 0) {
-           delx = MAX(d, MIN_RANKSEP);
+           delx = fmax(d, MIN_RANKSEP);
            xf += delx;
            ranks[rk++] = xf;
            p = endp;