aboutsummaryrefslogtreecommitdiff
path: root/console-tools/dumpkmap.c
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2003-12-20 06:00:08 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2003-12-20 06:00:08 +0000
commit02e035550456f7ebce6306f6023e87a7c1d44749 (patch)
tree67f124028fe1b297bab3c325e6f5783ac20004a6 /console-tools/dumpkmap.c
parent236e93d133ff80fae0a0fb5f8912a049e6ead4ac (diff)
downloadbusybox-02e035550456f7ebce6306f6023e87a7c1d44749.tar.gz
Use bb_xopen
Diffstat (limited to 'console-tools/dumpkmap.c')
-rw-r--r--console-tools/dumpkmap.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/console-tools/dumpkmap.c b/console-tools/dumpkmap.c
index 85926556c..19ba77d82 100644
--- a/console-tools/dumpkmap.c
+++ b/console-tools/dumpkmap.c
@@ -51,11 +51,7 @@ int dumpkmap_main(int argc, char **argv)
bb_show_usage();
}
- fd = open(CURRENT_VC, O_RDWR);
- if (fd < 0) {
- bb_perror_msg("Error opening " CURRENT_VC);
- return EXIT_FAILURE;
- }
+ fd=bb_xopen(CURRENT_VC, O_RDWR);
write(1, magic, 7);