From 02e035550456f7ebce6306f6023e87a7c1d44749 Mon Sep 17 00:00:00 2001 From: Glenn L McGrath Date: Sat, 20 Dec 2003 06:00:08 +0000 Subject: Use bb_xopen --- console-tools/loadfont.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'console-tools/loadfont.c') 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) if (argc != 1) bb_show_usage(); - fd = open(CURRENT_VC, O_RDWR); - if (fd < 0) - bb_perror_msg_and_die("Error opening " CURRENT_VC); + fd = bb_xopen(CURRENT_VC, O_RDWR); loadnewfont(fd); return EXIT_SUCCESS; -- cgit v1.2.3