diff options
author | erik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-04-19 03:59:10 +0000 |
---|---|---|
committer | erik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-04-19 03:59:10 +0000 |
commit | afa0daf9235b7ce101110ec3859b6a95b23e21a5 (patch) | |
tree | 98c78a2d9487f52752ed3057d9dd233be6f65161 /loadfont.c | |
parent | bc32b0e8232e440778f2159539043d6d5ea79b01 (diff) | |
download | busybox-w32-afa0daf9235b7ce101110ec3859b6a95b23e21a5.tar.gz busybox-w32-afa0daf9235b7ce101110ec3859b6a95b23e21a5.tar.bz2 busybox-w32-afa0daf9235b7ce101110ec3859b6a95b23e21a5.zip |
More minor updates to docs (and making apps behave as the docs
suggest they should)
-Erik
git-svn-id: svn://busybox.net/trunk/busybox@483 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'loadfont.c')
-rw-r--r-- | loadfont.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/loadfont.c b/loadfont.c index 0f6afecd4..5e1f04d76 100644 --- a/loadfont.c +++ b/loadfont.c | |||
@@ -54,11 +54,11 @@ extern int loadfont_main(int argc, char **argv) | |||
54 | fd = open("/dev/tty0", O_RDWR); | 54 | fd = open("/dev/tty0", O_RDWR); |
55 | if (fd < 0) { | 55 | if (fd < 0) { |
56 | fprintf(stderr, "Error opening /dev/tty0: %s\n", strerror(errno)); | 56 | fprintf(stderr, "Error opening /dev/tty0: %s\n", strerror(errno)); |
57 | return 1; | 57 | return( FALSE); |
58 | } | 58 | } |
59 | loadnewfont(fd); | 59 | loadnewfont(fd); |
60 | 60 | ||
61 | return 0; | 61 | return( TRUE); |
62 | } | 62 | } |
63 | 63 | ||
64 | static void do_loadfont(int fd, char *inbuf, int unit, int fontsize) | 64 | static void do_loadfont(int fd, char *inbuf, int unit, int fontsize) |