]> granicus.if.org Git - graphviz/commitdiff
lefty: use a C99 bool instead of int for 'innetscape'
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 15 Jan 2022 18:16:01 +0000 (10:16 -0800)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 15 Jan 2022 23:03:23 +0000 (15:03 -0800)
cmd/lefty/common.c

index 13c99b5212e8eb2c8e17a641f72e9f9b15e7d2de..8a89b4b1943bacd2ee3e8edf4ef5e375eae25b38 100644 (file)
@@ -21,7 +21,7 @@ static size_t leftypathlen;
 jmp_buf exitljbuf;
 int idlerunmode;
 fd_set inputfds;
-static int innetscape;
+static bool innetscape;
 static char *nswin;
 
 #ifndef FEATURE_MS
@@ -87,7 +87,7 @@ int init (char *aout) {
 
     c = 0;
     if (getenv ("INNETSCAPE"))
-        innetscape = TRUE, nswin = getenv ("NSWIN");
+        innetscape = true, nswin = getenv ("NSWIN");
     if (!(pathp = malloc (PATHINCR * PATHSIZE)))
         panic1 (POS, "init", "pathp malloc failed");
     if (!(cmdp = malloc (CMDINCR * CMDSIZE)))