diff options
author | 2007-11-05 11:37:25 +0000 | |
---|---|---|
committer | 2007-11-05 11:37:25 +0000 | |
commit | 5bf09c7449bd03068884c0aef0faed33fa5733b3 (patch) | |
tree | eb106928d3bf2581de2457aa9dcc7dcfd5cf6fcd | |
parent | - clarify the descriptions of "sync" and "async" (diff) | |
download | wireguard-openbsd-5bf09c7449bd03068884c0aef0faed33fa5733b3.tar.xz wireguard-openbsd-5bf09c7449bd03068884c0aef0faed33fa5733b3.zip |
forgotten arg to printf, Tobias Ulmer
-rw-r--r-- | sbin/newfs/newfs.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sbin/newfs/newfs.c b/sbin/newfs/newfs.c index 04ca2c08962..67213331a12 100644 --- a/sbin/newfs/newfs.c +++ b/sbin/newfs/newfs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: newfs.c,v 1.69 2007/06/26 19:03:21 otto Exp $ */ +/* $OpenBSD: newfs.c,v 1.70 2007/11/05 11:37:25 otto Exp $ */ /* $NetBSD: newfs.c,v 1.20 1996/05/16 07:13:03 thorpej Exp $ */ /* @@ -257,7 +257,8 @@ main(int argc, char *argv[]) reqopt = opt = FS_OPTTIME; else fatal("%s: unknown optimization " - "preference: use `space' or `time'."); + "preference: use `space' or `time'.", + optarg); } break; case 'q': |