diff options
Diffstat (limited to 'util-linux/eject.c')
-rw-r--r-- | util-linux/eject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/eject.c b/util-linux/eject.c index 749e2c9..3ccb4ae 100644 --- a/util-linux/eject.c +++ b/util-linux/eject.c @@ -70,7 +70,7 @@ static void eject_scsi(const char *dev) sg_io_hdr_t io_hdr; if ((ioctl(dev_fd, SG_GET_VERSION_NUM, &i) < 0) || (i < 30000)) - bb_error_msg_and_die("not a sg device or old sg driver"); + bb_simple_error_msg_and_die("not a sg device or old sg driver"); memset(&io_hdr, 0, sizeof(sg_io_hdr_t)); io_hdr.interface_id = 'S'; |