diff options
author | 2007-04-13 13:41:44 +0000 | |
---|---|---|
committer | 2007-04-13 13:41:44 +0000 | |
commit | edd3a49935eb3bf86190ec0f74b91d3c8d70aa7a (patch) | |
tree | e426028394bf948795ddc71cada74c4c8697f1ba | |
parent | When freeing PTP pages, we need to wait until TLB shootdown has been (diff) | |
download | wireguard-openbsd-edd3a49935eb3bf86190ec0f74b91d3c8d70aa7a.tar.xz wireguard-openbsd-edd3a49935eb3bf86190ec0f74b91d3c8d70aa7a.zip |
when updating atc(6) to split the -f and -g flags in two options
I missed synchronizing the usage() function.
problem noticed by jmc@
-rw-r--r-- | games/atc/main.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/games/atc/main.c b/games/atc/main.c index 3699ed9e965..35d7ae8fb01 100644 --- a/games/atc/main.c +++ b/games/atc/main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: main.c,v 1.16 2007/04/02 14:28:56 jmc Exp $ */ +/* $OpenBSD: main.c,v 1.17 2007/04/13 13:41:44 sobrado Exp $ */ /* $NetBSD: main.c,v 1.4 1995/04/27 21:22:25 mycroft Exp $ */ /*- @@ -52,7 +52,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)main.c 8.1 (Berkeley) 5/31/93"; #else -static char rcsid[] = "$OpenBSD: main.c,v 1.16 2007/04/02 14:28:56 jmc Exp $"; +static char rcsid[] = "$OpenBSD: main.c,v 1.17 2007/04/13 13:41:44 sobrado Exp $"; #endif #endif /* not lint */ @@ -134,8 +134,8 @@ main(int ac, char *av[]) if (f_usage) fprintf(stderr, - "usage: %s [-lpqstu?] [-fg game] [-r seed]\n", - name); + "usage: %s [-lpqstu?] [-f game] [-g game] [-r seed]\n", + name); if (f_showscore) log_score(1); if (f_list) |