Subject: Re: CVS commit: src/games/atc
To: None <christos@netbsd.org>
From: dieter roelants <dieter.NetBSD@pandora.be>
List: source-changes
Date: 03/22/2006 16:13:03
On 03/22/06 06:03:10, Christos Zoulas wrote:

> To generate a diff of this commit:
> cvs rdiff -r1.15 -r1.16 src/games/atc/update.c

--- update.c    22 Mar 2006 05:03:10 -0000      1.16
+++ update.c    22 Mar 2006 15:08:26 -0000
@@ -260,9 +260,9 @@
  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);