Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/games/atc Added a missing '-' in score list output.



details:   https://anonhg.NetBSD.org/src/rev/aeb8263f6401
branches:  trunk
changeset: 583540:aeb8263f6401
user:      rpaulo <rpaulo%NetBSD.org@localhost>
date:      Wed Aug 10 19:21:21 2005 +0000

description:
Added a missing '-' in score list output.

diffstat:

 games/atc/log.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r b762459cf3b0 -r aeb8263f6401 games/atc/log.c
--- a/games/atc/log.c   Wed Aug 10 18:19:21 2005 +0000
+++ b/games/atc/log.c   Wed Aug 10 19:21:21 2005 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: log.c,v 1.16 2005/08/10 17:53:28 rpaulo Exp $  */
+/*     $NetBSD: log.c,v 1.17 2005/08/10 19:21:21 rpaulo Exp $  */
 
 /*-
  * Copyright (c) 1990, 1993
@@ -46,7 +46,7 @@
 #if 0
 static char sccsid[] = "@(#)log.c      8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: log.c,v 1.16 2005/08/10 17:53:28 rpaulo Exp $");
+__RCSID("$NetBSD: log.c,v 1.17 2005/08/10 19:21:21 rpaulo Exp $");
 #endif
 #endif /* not lint */
 
@@ -273,7 +273,7 @@
        (void)printf("%2s:  %-8s  %-8s  %-18s  %4s  %9s  %4s\n", "#", "name",
            "host", "game", "time", "real time", "planes safe");
        (void)printf("-------------------------------------------------------");
-       (void)printf("------------------------\n");
+       (void)printf("-------------------------\n");
        for (i = 0; i < num_scores; i++) {
                cp = strchr(score[i].host, '.');
                if (cp != NULL)



Home | Main Index | Thread Index | Old Index