diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2018-02-07 20:22:24 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2018-02-07 20:22:24 +0000 |
commit | dea665dae5494b8fbbcb563cff2567478e70f58d (patch) | |
tree | 44bda3c9943142d9d9ad2885aa659315095f6f07 /games/battlestar/battlestar.c | |
parent | 88984196776bd9535df901f10db857393b97f7cd (diff) |
slightly reduce the difficulty of the adventure game that is reading
the battlestar code by reformatting a few lines.
special request from mlarkin so he'll go back to fixing meltdown.
Diffstat (limited to 'games/battlestar/battlestar.c')
-rw-r--r-- | games/battlestar/battlestar.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/games/battlestar/battlestar.c b/games/battlestar/battlestar.c index d1e9730ded4..02ab795bb9e 100644 --- a/games/battlestar/battlestar.c +++ b/games/battlestar/battlestar.c @@ -1,4 +1,4 @@ -/* $OpenBSD: battlestar.c,v 1.21 2017/05/31 19:51:27 tedu Exp $ */ +/* $OpenBSD: battlestar.c,v 1.22 2018/02/07 20:22:23 tedu Exp $ */ /* $NetBSD: battlestar.c,v 1.3 1995/03/21 15:06:47 cgd Exp $ */ /* @@ -71,6 +71,6 @@ main(int argc, char *argv[]) next = getword(next, words[wordcount], -1); parse(); while (cypher()) - ; + continue; } } |