diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2004-01-16 00:13:20 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2004-01-16 00:13:20 +0000 |
commit | 09d5eda8e33e493360cf12b383226bd3eee21154 (patch) | |
tree | 993e0153b4862c320209cbac10ee88d83f58de9a /games/cribbage/support.c | |
parent | ed1ec3296e69a786bdb096bda64760f5b0a6fa54 (diff) |
ISO C police: log and expl are reserved for the C library.
expl -> expl_string
log -> logit
Diffstat (limited to 'games/cribbage/support.c')
-rw-r--r-- | games/cribbage/support.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/games/cribbage/support.c b/games/cribbage/support.c index 8b26bfc2d4c..30e977c9365 100644 --- a/games/cribbage/support.c +++ b/games/cribbage/support.c @@ -1,4 +1,4 @@ -/* $OpenBSD: support.c,v 1.7 2003/06/03 03:01:39 millert Exp $ */ +/* $OpenBSD: support.c,v 1.8 2004/01/16 00:13:18 espie Exp $ */ /* $NetBSD: support.c,v 1.3 1995/03/21 15:08:59 cgd Exp $ */ /*- @@ -34,7 +34,7 @@ #if 0 static char sccsid[] = "@(#)support.c 8.1 (Berkeley) 5/31/93"; #else -static char rcsid[] = "$OpenBSD: support.c,v 1.7 2003/06/03 03:01:39 millert Exp $"; +static char rcsid[] = "$OpenBSD: support.c,v 1.8 2004/01/16 00:13:18 espie Exp $"; #endif #endif /* not lint */ @@ -154,7 +154,7 @@ plyrhand(hand, s) } } if (explain) - msg("Explanation: %s", expl); + msg("Explanation: %s", expl_string); do_wait(); } else win = chkscr(&pscore, i); |