summaryrefslogtreecommitdiff
path: root/console-tools/loadfont.c
diff options
context:
space:
mode:
authorMatt Kraai <kraai@debian.org>2001-07-23 14:52:08 +0000
committerMatt Kraai <kraai@debian.org>2001-07-23 14:52:08 +0000
commit439e3df65300100e4b63580141eaa238c30431d5 (patch)
treef74320f9994faf4d68826c95cb8d043e35d3a685 /console-tools/loadfont.c
parent0139ca92ff4b960e904d18bc0254499e163e2545 (diff)
downloadbusybox-w32-439e3df65300100e4b63580141eaa238c30431d5.tar.gz
busybox-w32-439e3df65300100e4b63580141eaa238c30431d5.tar.bz2
busybox-w32-439e3df65300100e4b63580141eaa238c30431d5.zip
Add support for devfs device names.
Diffstat (limited to 'console-tools/loadfont.c')
-rw-r--r--console-tools/loadfont.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/console-tools/loadfont.c b/console-tools/loadfont.c
index 1a724ca85..d66500195 100644
--- a/console-tools/loadfont.c
+++ b/console-tools/loadfont.c
@@ -46,9 +46,9 @@ extern int loadfont_main(int argc, char **argv)
46 if (argc != 1) 46 if (argc != 1)
47 show_usage(); 47 show_usage();
48 48
49 fd = open("/dev/tty0", O_RDWR); 49 fd = open(CURRENT_VC, O_RDWR);
50 if (fd < 0) 50 if (fd < 0)
51 perror_msg_and_die("Error opening /dev/tty0"); 51 perror_msg_and_die("Error opening " CURRENT_VC);
52 loadnewfont(fd); 52 loadnewfont(fd);
53 53
54 return EXIT_SUCCESS; 54 return EXIT_SUCCESS;