diff options
author | Guido van Rossum <guido@python.org> | 1992-08-06 16:53:58 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1992-08-06 16:53:58 (GMT) |
commit | de126a6ff8d3ac2432ca2e117d269916041203ad (patch) | |
tree | 5aaab60cf657b498fbb4a9b4549049506d4da056 /Modules | |
parent | ff4949eeee7f86117d4a69599777ff5564315e39 (diff) | |
download | cpython-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.c | 2 |
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); |