summaryrefslogtreecommitdiffstats
path: root/atc
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>2006-03-22 15:24:52 +0000
committerchristos <christos@NetBSD.org>2006-03-22 15:24:52 +0000
commitaba16aef3dbe213599a2b52f82a999b784116c24 (patch)
tree7fb5a690cd4f31d118400251aba21c99ed7e4a0c /atc
parentf4bbbc82b97201e01b30fc2e56e1e2bf596f916f (diff)
downloadbsdgames-darwin-aba16aef3dbe213599a2b52f82a999b784116c24.tar.gz
bsdgames-darwin-aba16aef3dbe213599a2b52f82a999b784116c24.tar.zst
bsdgames-darwin-aba16aef3dbe213599a2b52f82a999b784116c24.zip
Add missing parens.
Diffstat (limited to 'atc')
-rw-r--r--atc/update.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/atc/update.c b/atc/update.c
index dafa74e7..72c19675 100644
--- a/atc/update.c
+++ b/atc/update.c
@@ -1,4 +1,4 @@
-/* $NetBSD: update.c,v 1.16 2006/03/22 05:03:10 christos Exp $ */
+/* $NetBSD: update.c,v 1.17 2006/03/22 15:24:52 christos Exp $ */
/*-
* Copyright (c) 1990, 1993
@@ -46,7 +46,7 @@
#if 0
static char sccsid[] = "@(#)update.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: update.c,v 1.16 2006/03/22 05:03:10 christos Exp $");
+__RCSID("$NetBSD: update.c,v 1.17 2006/03/22 15:24:52 christos Exp $");
#endif
#endif /* not lint */
@@ -260,9 +260,9 @@ name(const PLANE *p)
int
number(int l)
{
- if (islower((unsigned char)l)
+ if (islower((unsigned char)l))
return (l - 'a');
- else if (isupper((unsigned char)l)
+ else if (isupper((unsigned char)l))
return (l - 'A');
else
return (-1);