diff options
author | Jolan Luff <jolan@cvs.openbsd.org> | 2003-08-07 20:19:11 +0000 |
---|---|---|
committer | Jolan Luff <jolan@cvs.openbsd.org> | 2003-08-07 20:19:11 +0000 |
commit | e7b4f96e0f9b5e3d70af21c154ea261964bbe8d9 (patch) | |
tree | 7cb595a159ccba07889c90d7fb9d9dadf9634e6f | |
parent | 6f13f2fbd807085cd328e5daba22f8aa44164e01 (diff) |
unknwown->unknown, spotted by miod@. now that we have an otto@, theo.c
has competition.
-rw-r--r-- | games/hunt/hunt/otto.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/games/hunt/hunt/otto.c b/games/hunt/hunt/otto.c index c0544ecc7cd..f323e63d6e2 100644 --- a/games/hunt/hunt/otto.c +++ b/games/hunt/hunt/otto.c @@ -1,4 +1,4 @@ -/* $OpenBSD: otto.c,v 1.7 2003/06/11 08:45:25 pjanzen Exp $ */ +/* $OpenBSD: otto.c,v 1.8 2003/08/07 20:19:10 jolan Exp $ */ /* $NetBSD: otto.c,v 1.2 1997/10/10 16:32:39 lukem Exp $ */ /* * Copyright (c) 1983-2003, Regents of the University of California. @@ -153,7 +153,7 @@ otto(y, x, face, buf, buflen) case '<': facing = WEST; break; case 'v': facing = SOUTH; break; case '>': facing = EAST; break; - default: panic("unknwown face"); + default: panic("unknown face"); } row = y; col = x; been_there[row][col] |= 1 << facing; |