Source-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
Re: CVS commit: src/games/atc
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);
Home |
Main Index |
Thread Index |
Old Index