diff options
author | Glenn L McGrath <bug1@ihug.co.nz> | 2003-12-20 06:00:08 +0000 |
---|---|---|
committer | Glenn L McGrath <bug1@ihug.co.nz> | 2003-12-20 06:00:08 +0000 |
commit | 02e035550456f7ebce6306f6023e87a7c1d44749 (patch) | |
tree | 67f124028fe1b297bab3c325e6f5783ac20004a6 /console-tools/loadfont.c | |
parent | 236e93d133ff80fae0a0fb5f8912a049e6ead4ac (diff) | |
download | busybox-w32-02e035550456f7ebce6306f6023e87a7c1d44749.tar.gz busybox-w32-02e035550456f7ebce6306f6023e87a7c1d44749.tar.bz2 busybox-w32-02e035550456f7ebce6306f6023e87a7c1d44749.zip |
Use bb_xopen
Diffstat (limited to 'console-tools/loadfont.c')
-rw-r--r-- | console-tools/loadfont.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/console-tools/loadfont.c b/console-tools/loadfont.c index 6108151a6..4580dc4e0 100644 --- a/console-tools/loadfont.c +++ b/console-tools/loadfont.c | |||
@@ -46,9 +46,7 @@ extern int loadfont_main(int argc, char **argv) | |||
46 | if (argc != 1) | 46 | if (argc != 1) |
47 | bb_show_usage(); | 47 | bb_show_usage(); |
48 | 48 | ||
49 | fd = open(CURRENT_VC, O_RDWR); | 49 | fd = bb_xopen(CURRENT_VC, O_RDWR); |
50 | if (fd < 0) | ||
51 | bb_perror_msg_and_die("Error opening " CURRENT_VC); | ||
52 | loadnewfont(fd); | 50 | loadnewfont(fd); |
53 | 51 | ||
54 | return EXIT_SUCCESS; | 52 | return EXIT_SUCCESS; |