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_procfs/mount_procfs.c | |
parent | d06fff60b5977e528cc8a160de2fc795a070b365 (diff) |
More err()/warn()/etc. argument fixes.
Diffstat (limited to 'sbin/mount_procfs/mount_procfs.c')
-rw-r--r-- | sbin/mount_procfs/mount_procfs.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/mount_procfs/mount_procfs.c b/sbin/mount_procfs/mount_procfs.c index 40eb98951d8..b42c961c47f 100644 --- a/sbin/mount_procfs/mount_procfs.c +++ b/sbin/mount_procfs/mount_procfs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mount_procfs.c,v 1.5 1997/08/20 05:10:26 millert Exp $ */ +/* $OpenBSD: mount_procfs.c,v 1.6 1997/08/24 08:07:17 downsj Exp $ */ /* $NetBSD: mount_procfs.c,v 1.7 1996/04/13 01:31:59 jtc Exp $ */ /* @@ -48,7 +48,7 @@ char copyright[] = #if 0 static char sccsid[] = "@(#)mount_procfs.c 8.3 (Berkeley) 3/27/94"; #else -static char rcsid[] = "$OpenBSD: mount_procfs.c,v 1.5 1997/08/20 05:10:26 millert Exp $"; +static char rcsid[] = "$OpenBSD: mount_procfs.c,v 1.6 1997/08/24 08:07:17 downsj Exp $"; #endif #endif /* not lint */ @@ -99,7 +99,7 @@ main(argc, argv) errx(1, "%s: Filesystem not supported by kernel", argv[1]); else - err(1, argv[1]); + err(1, "%s", argv[1]); } exit(0); } |