]> granicus.if.org Git - graphviz/commitdiff
use a stronger type to squash a -Wconversion warning
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Thu, 8 Apr 2021 02:44:10 +0000 (19:44 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 17 Apr 2021 21:02:40 +0000 (14:02 -0700)
lib/ortho/ortho.c

index b02142e0d97248baa548aacb5ba2605d281ac56d..6f2b97a08a1fb4d5015c83846f2ce4a4a128a1a3 100644 (file)
@@ -22,6 +22,7 @@
 #include "config.h"
 
 #define DEBUG
+#include <stdbool.h>
 #include <stddef.h>
 #include <setjmp.h>
 #include <ortho/maze.h>
@@ -105,7 +106,7 @@ sidePt (snode* ptr, cell* cp)
  * Assume b1 != b2
  */
 static void
-setSeg (segment* sp, int dir, double fix, double b1, double b2, int l1, int l2)
+setSeg (segment* sp, bool dir, double fix, double b1, double b2, int l1, int l2)
 {
     sp->isVert = dir;
     sp->comm_coord = fix;