diff options
author | Martin Reindl <martin@cvs.openbsd.org> | 2006-10-31 15:16:47 +0000 |
---|---|---|
committer | Martin Reindl <martin@cvs.openbsd.org> | 2006-10-31 15:16:47 +0000 |
commit | a38c805a613a20acc4b80430c9220ca678ef759f (patch) | |
tree | e651b9fddf0d77926d95f8c899874d4177faaaf9 /games | |
parent | 0ac1e28622bb1c20b937c90f550777ee6c9e8ae0 (diff) |
usage information goes to stderr
Diffstat (limited to 'games')
-rw-r--r-- | games/mille/mille.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/games/mille/mille.c b/games/mille/mille.c index 968ade0bf01..34ba4ebda84 100644 --- a/games/mille/mille.c +++ b/games/mille/mille.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mille.c,v 1.14 2003/06/03 03:01:40 millert Exp $ */ +/* $OpenBSD: mille.c,v 1.15 2006/10/31 15:16:46 martin Exp $ */ /* $NetBSD: mille.c,v 1.4 1995/03/24 05:01:48 cgd Exp $ */ /* @@ -40,7 +40,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)mille.c 8.1 (Berkeley) 5/31/93"; #else -static char rcsid[] = "$OpenBSD: mille.c,v 1.14 2003/06/03 03:01:40 millert Exp $"; +static char rcsid[] = "$OpenBSD: mille.c,v 1.15 2006/10/31 15:16:46 martin Exp $"; #endif #endif /* not lint */ @@ -73,7 +73,7 @@ main(ac, av) case 1: break; default: - printf("usage: milles [ restore_file ]\n"); + fprintf(stderr, "usage: milles [ restore_file ]\n"); exit(1); /* NOTREACHED */ } |