diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2003-06-15 21:21:57 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2003-06-15 21:21:57 +0000 |
commit | a34eee600ce24b493cd70b82aedaa7e91945f7cd (patch) | |
tree | 9a6acb2298c83b2773a4f0306831ddca32714c88 /usr.bin | |
parent | 17011130384c1fab52d3e076764d59bd47e79ffd (diff) |
minor style nit
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/yes/yes.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/usr.bin/yes/yes.c b/usr.bin/yes/yes.c index 69bfc6c7380..8bc858d88f3 100644 --- a/usr.bin/yes/yes.c +++ b/usr.bin/yes/yes.c @@ -1,4 +1,4 @@ -/* $OpenBSD: yes.c,v 1.6 2003/06/03 02:56:24 millert Exp $ */ +/* $OpenBSD: yes.c,v 1.7 2003/06/15 21:21:56 tedu Exp $ */ /* $NetBSD: yes.c,v 1.3 1994/11/14 04:56:15 jtc Exp $ */ /* @@ -40,7 +40,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)yes.c 8.1 (Berkeley) 6/6/93"; #endif -static char rcsid[] = "$OpenBSD: yes.c,v 1.6 2003/06/03 02:56:24 millert Exp $"; +static char rcsid[] = "$OpenBSD: yes.c,v 1.7 2003/06/15 21:21:56 tedu Exp $"; #endif /* not lint */ #include <stdio.h> @@ -51,6 +51,7 @@ main(int argc, char *argv[]) if (argc > 1) for (;;) puts(argv[1]); - else for (;;) - puts("y"); + else + for (;;) + puts("y"); } |