From 4822ad0353d4d95c86c9b933a1a8bfabfaee619c Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Sun, 5 Dec 2021 11:15:57 -0800 Subject: [PATCH] samedir: fix return type Commit e1181697185289594304cfb22d5979d1fc5cbf0f altered this function to use C99 bools but did not update its return type. --- lib/dotgen/conc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/dotgen/conc.c b/lib/dotgen/conc.c index 3d44e3d96..ee3722706 100644 --- a/lib/dotgen/conc.c +++ b/lib/dotgen/conc.c @@ -19,7 +19,7 @@ #define UP 0 #define DOWN 1 -static boolean samedir(edge_t * e, edge_t * f) +static bool samedir(edge_t * e, edge_t * f) { edge_t *e0, *f0; -- 2.50.1