diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2021-04-29 01:57:01 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2021-04-29 01:57:01 +0000 |
commit | e51d7db7b987cab0b8c84e65243f2420e9486982 (patch) | |
tree | 1c71d558e0b1bc629abb31c7a0d5e9832e99ce9d /games | |
parent | 0f9723ac4c55454b25c78c55463bcb9695d06d02 (diff) |
Remove extraneous for() likely caused by copy & paste.
From trondd, OK pjanzen@
Diffstat (limited to 'games')
-rw-r--r-- | games/phantasia/io.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/games/phantasia/io.c b/games/phantasia/io.c index aeaa5c05216..c3a383ac98d 100644 --- a/games/phantasia/io.c +++ b/games/phantasia/io.c @@ -1,4 +1,4 @@ -/* $OpenBSD: io.c,v 1.9 2016/01/10 13:35:09 mestre Exp $ */ +/* $OpenBSD: io.c,v 1.10 2021/04/29 01:57:00 millert Exp $ */ /* $NetBSD: io.c,v 1.2 1995/03/24 03:58:50 cgd Exp $ */ /* @@ -324,7 +324,6 @@ getanswer(char *choices, bool def) alarm(0); /* make sure alarm is off */ for (loop = 3; loop; --loop) - for (loop = 3; loop; --loop) /* try for 3 times */ { if (setjmp(Timeoenv) != 0) |