Add errno.h
[oweals/busybox.git] / mkfs_minix.c
index 95815fd4dce66fc5a0b2de0b44016c2727e9e0bf..e1ede6caa3357ba3c8ec4920aceb39498d5f7677 100644 (file)
@@ -329,11 +329,8 @@ static int get_size(const char *file)
        int fd;
        long size;
 
-       fd = open(file, O_RDWR);
-       if (fd < 0) {
-               perror(file);
-               exit(1);
-       }
+       if ((fd = open(file, O_RDWR)) < 0)
+               perror_msg_and_die("%s", file);
        if (ioctl(fd, BLKGETSIZE, &size) >= 0) {
                close(fd);
                return (size * 512);