More minor updates to docs (and making apps behave as the docs

suggest they should)
 -Erik
This commit is contained in:
Erik Andersen
2000-04-19 03:59:10 +00:00
parent a3e57ca700
commit 3fe7f9f20b
8 changed files with 77 additions and 37 deletions

View File

@ -54,11 +54,11 @@ extern int loadfont_main(int argc, char **argv)
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)