From: ellson Date: Tue, 18 Oct 2005 18:42:59 +0000 (+0000) Subject: boolean -> bool (with configure checks and replacements for pre C99 compilers) X-Git-Tag: LAST_LIBGRAPH~32^2~7282 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4d35473678d0e076c859f3b9a8631a564d326c06;p=graphviz boolean -> bool (with configure checks and replacements for pre C99 compilers) --- diff --git a/tclpkg/tcldot/tkgen.c b/tclpkg/tcldot/tkgen.c index d67775a47..fa38aac57 100644 --- a/tclpkg/tcldot/tkgen.c +++ b/tclpkg/tcldot/tkgen.c @@ -526,7 +526,7 @@ static void tk_polyline(point * A, int n) static void tk_user_shape(char *name, point * A, int n, int filled) { - static boolean onetime = TRUE; + static bool onetime = TRUE; if (onetime) { fprintf(stderr, "custom shapes not available with this driver\n"); onetime = FALSE;