More minor updates to docs (and making apps behave as the docs
suggest they should)
 -Erik
diff --git a/loadfont.c b/loadfont.c
index 0f6afec..5e1f04d 100644
--- a/loadfont.c
+++ b/loadfont.c
@@ -54,11 +54,11 @@
 	fd = open("/dev/tty0", O_RDWR);
 	if (fd < 0) {
 		fprintf(stderr, "Error opening /dev/tty0: %s\n", strerror(errno));
-		return 1;
+		return( FALSE);
 	}
 	loadnewfont(fd);
 
-	return 0;
+	return( TRUE);
 }
 
 static void do_loadfont(int fd, char *inbuf, int unit, int fontsize)