diff options
author | 2001-02-04 02:19:42 +0000 | |
---|---|---|
committer | 2001-02-04 02:19:42 +0000 | |
commit | c2f53df8537e1088dfbc6561018301d78e66959a (patch) | |
tree | 9a795a0f00e52103fefe9e6bbaa5b99e20d29f8d | |
parent | Use strdup() (diff) | |
download | wireguard-openbsd-c2f53df8537e1088dfbc6561018301d78e66959a.tar.xz wireguard-openbsd-c2f53df8537e1088dfbc6561018301d78e66959a.zip |
Format for long usernames
-rw-r--r-- | games/battlestar/com6.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/games/battlestar/com6.c b/games/battlestar/com6.c index 007fc78192b..963affc9f8c 100644 --- a/games/battlestar/com6.c +++ b/games/battlestar/com6.c @@ -1,4 +1,4 @@ -/* $OpenBSD: com6.c,v 1.15 2000/09/24 21:55:23 pjanzen Exp $ */ +/* $OpenBSD: com6.c,v 1.16 2001/02/04 02:19:42 pjanzen Exp $ */ /* $NetBSD: com6.c,v 1.5 1995/04/27 21:30:23 mycroft Exp $ */ /* @@ -38,7 +38,7 @@ #if 0 static char sccsid[] = "@(#)com6.c 8.2 (Berkeley) 4/28/95"; #else -static char rcsid[] = "$OpenBSD: com6.c,v 1.15 2000/09/24 21:55:23 pjanzen Exp $"; +static char rcsid[] = "$OpenBSD: com6.c,v 1.16 2001/02/04 02:19:42 pjanzen Exp $"; #endif #endif /* not lint */ @@ -124,7 +124,7 @@ post(ch) date[24] = '\0'; if (score_fp != NULL) { - fprintf(score_fp, "%s %8s %c%20s", date, username, ch, rate()); + fprintf(score_fp, "%s %31s %c%20s", date, username, ch, rate()); if (wiz) fprintf(score_fp, " wizard\n"); else |