aboutsummaryrefslogtreecommitdiff
path: root/mt.c
diff options
context:
space:
mode:
authorkraai <kraai@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-12-22 01:48:07 +0000
committerkraai <kraai@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-12-22 01:48:07 +0000
commit2230e04b24d58710b30d25f032c1996a143ba261 (patch)
treeb8cb8d939032c0806d62161b01e5836cb808dc3f /mt.c
parent3c7e7e11b41d4a421bcf42fd1bf72a537e051d4a (diff)
downloadbusybox-w32-2230e04b24d58710b30d25f032c1996a143ba261.tar.gz
busybox-w32-2230e04b24d58710b30d25f032c1996a143ba261.tar.bz2
busybox-w32-2230e04b24d58710b30d25f032c1996a143ba261.zip
Use busybox error handling functions wherever possible.
git-svn-id: svn://busybox.net/trunk/busybox@1489 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'mt.c')
-rw-r--r--mt.c12
1 files changed, 4 insertions, 8 deletions
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)
85 else 85 else
86 op.mt_count = 1; /* One, not zero, right? */ 86 op.mt_count = 1; /* One, not zero, right? */
87 87
88 if ((fd = open(file, O_RDONLY, 0)) < 0) { 88 if ((fd = open(file, O_RDONLY, 0)) < 0)
89 perror(file); 89 perror_msg_and_die("%s", file);
90 return EXIT_FAILURE;
91 }
92 90
93 if (ioctl(fd, MTIOCTOP, &op) != 0) { 91 if (ioctl(fd, MTIOCTOP, &op) != 0)
94 perror(file); 92 perror_msg_and_die("%s", file);
95 return EXIT_FAILURE;
96 }
97 93
98 return EXIT_SUCCESS; 94 return EXIT_SUCCESS;
99} 95}