diff options
author | 2017-01-20 00:50:16 +0000 | |
---|---|---|
committer | 2017-01-20 00:50:16 +0000 | |
commit | 71cfb2ea07052ce44758b9f44921cbba23d1c242 (patch) | |
tree | aa8311a440c58260b6ec0bba634f9be742a809c5 | |
parent | Rework internal_verify, mostly from OpenSSL. so we can progress (diff) | |
download | wireguard-openbsd-71cfb2ea07052ce44758b9f44921cbba23d1c242.tar.xz wireguard-openbsd-71cfb2ea07052ce44758b9f44921cbba23d1c242.zip |
Nuke some excess whitespace.
-rw-r--r-- | games/atc/log.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/games/atc/log.c b/games/atc/log.c index dfe7a03ecd3..6ff6afc100c 100644 --- a/games/atc/log.c +++ b/games/atc/log.c @@ -1,4 +1,4 @@ -/* $OpenBSD: log.c,v 1.23 2016/09/11 14:21:17 tb Exp $ */ +/* $OpenBSD: log.c,v 1.24 2017/01/20 00:50:16 krw Exp $ */ /* $NetBSD: log.c,v 1.3 1995/03/21 15:04:21 cgd Exp $ */ /*- @@ -123,7 +123,7 @@ open_score_file(void) if (score_fd < 0) err(1, "open"); /* - * This is done to take advantage of stdio, while still + * This is done to take advantage of stdio, while still * allowing a O_CREAT during the open(2) of the log file. */ score_fp = fdopen(score_fd, "r+"); @@ -150,9 +150,9 @@ log_score(int list_em) sizeof(score[0].game)-1); for (;;) { good = fscanf(score_fp, scanstr, - score[num_scores].name, + score[num_scores].name, score[num_scores].game, - &score[num_scores].planes, + &score[num_scores].planes, &score[num_scores].time, &score[num_scores].real_time); if (good != 5 || ++num_scores >= NUM_SCORES) |