summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1992-08-06 16:53:58 (GMT)
committerGuido van Rossum <guido@python.org>1992-08-06 16:53:58 (GMT)
commitde126a6ff8d3ac2432ca2e117d269916041203ad (patch)
tree5aaab60cf657b498fbb4a9b4549049506d4da056 /Modules
parentff4949eeee7f86117d4a69599777ff5564315e39 (diff)
downloadcpython-de126a6ff8d3ac2432ca2e117d269916041203ad.zip
cpython-de126a6ff8d3ac2432ca2e117d269916041203ad.tar.gz
cpython-de126a6ff8d3ac2432ca2e117d269916041203ad.tar.bz2
Replaced max=-1 by max = -1.
Diffstat (limited to 'Modules')
-rw-r--r--Modules/selectmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/selectmodule.c b/Modules/selectmodule.c
index 3a5644b..be2b062 100644
--- a/Modules/selectmodule.c
+++ b/Modules/selectmodule.c
@@ -38,7 +38,7 @@ list2set(list, set, fd2obj)
fd_set *set;
object *fd2obj[FD_SETSIZE];
{
- int i, len, v, max=-1;
+ int i, len, v, max = -1;
object *o, *filenomethod, *fno;
FD_ZERO(set);