From 2ee6a63f1f67a11e38dde67c6be5b6611d5c8b50 Mon Sep 17 00:00:00 2001 From: David Greenman Date: Wed, 15 Feb 1995 14:29:26 +0000 Subject: [PATCH] Include the special device in the error output so that it makes sense. --- sbin/mount_cd9660/mount_cd9660.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbin/mount_cd9660/mount_cd9660.c b/sbin/mount_cd9660/mount_cd9660.c index e909177a897d..8ceaec019076 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); }