diff options
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) |