From 5cd31d09d461c443f1a854d6132f2a5ea8c525d5 Mon Sep 17 00:00:00 2001 From: erg Date: Thu, 7 Dec 2006 22:49:36 +0000 Subject: [PATCH] Re-do some .h files to limit exposure of internal values, .h files, and dependencies on config.h; return to a simple, concrete boolean type --- lib/fdpgen/layout.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/fdpgen/layout.c b/lib/fdpgen/layout.c index 59a604735..332523336 100644 --- a/lib/fdpgen/layout.c +++ b/lib/fdpgen/layout.c @@ -907,9 +907,9 @@ setClustNodes(graph_t* root) * How to combine parts, especially with disparate components? */ if (c_cnt > 1) { - bool *bp; + boolean *bp; if (pinned) { - bp = N_NEW(c_cnt, bool); + bp = N_NEW(c_cnt, boolean); bp[0] = TRUE; } else bp = 0; -- 2.40.0