summaryrefslogtreecommitdiff
path: root/bin/ln
diff options
context:
space:
mode:
authorPhilippe Charnier <charnier@FreeBSD.org>1997-06-06 06:40:06 +0000
committerPhilippe Charnier <charnier@FreeBSD.org>1997-06-06 06:40:06 +0000
commit749d4bb6499a0ca75459c7e4db4e39497337bef7 (patch)
treebf747642941e9e10a1a16bbd6e7ce7e125d54a33 /bin/ln
parent714ec423a045eef69e5f5d4d14f264114e33d4c4 (diff)
Notes
Diffstat (limited to 'bin/ln')
-rw-r--r--bin/ln/ln.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/bin/ln/ln.c b/bin/ln/ln.c
index 81467409d46a..13fa3a8111c5 100644
--- a/bin/ln/ln.c
+++ b/bin/ln/ln.c
@@ -30,7 +30,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: ln.c,v 1.9 1997/02/22 14:03:49 peter Exp $
+ * $Id: ln.c,v 1.10 1997/03/28 15:24:22 imp Exp $
*/
#ifndef lint
@@ -157,7 +157,8 @@ linkit(target, source, isdir)
void
usage()
{
- (void)fprintf(stderr,
- "usage:\tln [-fs] file1 file2\n\tln [-fs] file ... directory\n");
+ (void)fprintf(stderr, "%s\n%s\n",
+ "usage: ln [-fs] file1 file2",
+ " ln [-fs] file ... directory");
exit(1);
}