From 2230e04b24d58710b30d25f032c1996a143ba261 Mon Sep 17 00:00:00 2001 From: kraai Date: Fri, 22 Dec 2000 01:48:07 +0000 Subject: Use busybox error handling functions wherever possible. git-svn-id: svn://busybox.net/trunk/busybox@1489 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- mt.c | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) (limited to 'mt.c') diff --git a/mt.c b/mt.c index 2d35c7c22..70d03cca4 100644 --- a/mt.c +++ b/mt.c @@ -85,15 +85,11 @@ extern int mt_main(int argc, char **argv) else op.mt_count = 1; /* One, not zero, right? */ - if ((fd = open(file, O_RDONLY, 0)) < 0) { - perror(file); - return EXIT_FAILURE; - } + if ((fd = open(file, O_RDONLY, 0)) < 0) + perror_msg_and_die("%s", file); - if (ioctl(fd, MTIOCTOP, &op) != 0) { - perror(file); - return EXIT_FAILURE; - } + if (ioctl(fd, MTIOCTOP, &op) != 0) + perror_msg_and_die("%s", file); return EXIT_SUCCESS; } -- cgit v1.2.3-55-g6feb