diff options
author | dg <dg@FreeBSD.org> | 1995-02-15 14:29:26 +0000 |
---|---|---|
committer | dg <dg@FreeBSD.org> | 1995-02-15 14:29:26 +0000 |
commit | 8d2fc9a9178fcfbfab879b69c296a3a404af85a2 (patch) | |
tree | 1e9f18deb3ba821a5f2770647c715c06a89bcae0 /sbin | |
parent | 93e241d4044ac1099148c3462977900775a61e2c (diff) | |
download | FreeBSD-src-8d2fc9a9178fcfbfab879b69c296a3a404af85a2.zip FreeBSD-src-8d2fc9a9178fcfbfab879b69c296a3a404af85a2.tar.gz |
Include the special device in the error output so that it makes sense.
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/mount_cd9660/mount_cd9660.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/mount_cd9660/mount_cd9660.c b/sbin/mount_cd9660/mount_cd9660.c index e909177..8ceaec0 100644 --- a/sbin/mount_cd9660/mount_cd9660.c +++ b/sbin/mount_cd9660/mount_cd9660.c @@ -131,7 +131,7 @@ main(argc, argv) } if (mount(vfc ? vfc->vfc_index : MOUNT_CD9660, dir, mntflags, &args) < 0) - err(1, NULL); + err(1, "%s", dev); exit(0); } |