diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2005-11-05 21:25:01 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2005-11-05 21:25:01 +0000 |
commit | aa16da3ae0fba78d9cd5cf06d5e614c9ee659d48 (patch) | |
tree | 502a2cd84f6aa750799e0357007cb2a426d06d76 /games/pom/pom.c | |
parent | 5b4c0f0d219b42c42e4fc915fcf514dd6756f462 (diff) |
- use macros for args
- better list -width
- epoch -> Epoch
- missing set of `[]' in usage()
Diffstat (limited to 'games/pom/pom.c')
-rw-r--r-- | games/pom/pom.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/games/pom/pom.c b/games/pom/pom.c index 8cd921e045d..2c70fcf2659 100644 --- a/games/pom/pom.c +++ b/games/pom/pom.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pom.c,v 1.11 2004/07/10 07:26:23 deraadt Exp $ */ +/* $OpenBSD: pom.c,v 1.12 2005/11/05 21:25:00 jmc Exp $ */ /* $NetBSD: pom.c,v 1.6 1996/02/06 22:47:29 jtc Exp $ */ /* @@ -42,7 +42,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)pom.c 8.1 (Berkeley) 5/31/93"; #else -static char rcsid[] = "$OpenBSD: pom.c,v 1.11 2004/07/10 07:26:23 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: pom.c,v 1.12 2005/11/05 21:25:00 jmc Exp $"; #endif #endif /* not lint */ @@ -273,6 +273,6 @@ void badformat(void) { warnx("illegal time format"); - (void)fprintf(stderr, "usage: pom [[[[[cc]yy]mm]dd]HH]\n"); + (void)fprintf(stderr, "usage: pom [[[[[[cc]yy]mm]dd]HH]]\n"); exit(1); } |