diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1997-08-24 08:07:26 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1997-08-24 08:07:26 +0000 |
commit | 06a63b9a9af61610139011f30db2b84bebda8059 (patch) | |
tree | 5cf91c84e73ceac5c7bbae33dcdad0fd2b3d58dc /sbin/mount_cd9660/mount_cd9660.c | |
parent | d06fff60b5977e528cc8a160de2fc795a070b365 (diff) |
More err()/warn()/etc. argument fixes.
Diffstat (limited to 'sbin/mount_cd9660/mount_cd9660.c')
-rw-r--r-- | sbin/mount_cd9660/mount_cd9660.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/mount_cd9660/mount_cd9660.c b/sbin/mount_cd9660/mount_cd9660.c index 42d689a0ccd..7b05a892b64 100644 --- a/sbin/mount_cd9660/mount_cd9660.c +++ b/sbin/mount_cd9660/mount_cd9660.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mount_cd9660.c,v 1.7 1997/08/20 05:10:18 millert Exp $ */ +/* $OpenBSD: mount_cd9660.c,v 1.8 1997/08/24 08:07:08 downsj Exp $ */ /* $NetBSD: mount_cd9660.c,v 1.3 1996/04/13 01:31:08 jtc Exp $ */ /* @@ -49,7 +49,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)mount_cd9660.c 8.4 (Berkeley) 3/27/94"; #else -static char rcsid[] = "$OpenBSD: mount_cd9660.c,v 1.7 1997/08/20 05:10:18 millert Exp $"; +static char rcsid[] = "$OpenBSD: mount_cd9660.c,v 1.8 1997/08/24 08:07:08 downsj Exp $"; #endif #endif /* not lint */ @@ -128,7 +128,7 @@ main(argc, argv) if (errno == EOPNOTSUPP) errx(1, "%s: Filesystem not supported by kernel", dir); else - err(1, dir); + err(1, "%s", dir); } exit(0); } |