diff options
Diffstat (limited to 'console-tools/dumpkmap.c')
-rw-r--r-- | console-tools/dumpkmap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/console-tools/dumpkmap.c b/console-tools/dumpkmap.c index 0da0186..22652a5 100644 --- a/console-tools/dumpkmap.c +++ b/console-tools/dumpkmap.c @@ -51,9 +51,9 @@ int dumpkmap_main(int argc, char **argv) show_usage(); } - fd = open("/dev/tty0", O_RDWR); + fd = open(CURRENT_VC, O_RDWR); if (fd < 0) { - perror_msg("Error opening /dev/tty0"); + perror_msg("Error opening " CURRENT_VC); return EXIT_FAILURE; } |