]> granicus.if.org Git - graphviz/commitdiff
Forgot a false and true.
authorerg <devnull@localhost>
Fri, 27 Jun 2008 18:01:50 +0000 (18:01 +0000)
committererg <devnull@localhost>
Fri, 27 Jun 2008 18:01:50 +0000 (18:01 +0000)
lib/gvc/gvusershape.c

index 67717aecb96295d959e1e94c49367953bc1c388c..c69fdddd4b8690b56d321d0fb1da5481874822c5 100644 (file)
@@ -363,7 +363,7 @@ boolean gvusershape_file_access(usershape_t *us)
 #endif
            if (us->f == NULL) {
                agerr(AGWARN, "%s while opening %s\n", strerror(errno), fn);
-               return false;
+               return FALSE;
            }
            if (usershape_files_open_cnt >= MAX_USERSHAPE_FILES_OPEN)
                us->nocache = TRUE;
@@ -371,7 +371,7 @@ boolean gvusershape_file_access(usershape_t *us)
                usershape_files_open_cnt++;
        }
     }
-    return true;
+    return TRUE;
 }
 
 void gvusershape_file_release(usershape_t *us)