]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Replaced max=-1 by max = -1.
authorGuido van Rossum <guido@python.org>
Thu, 6 Aug 1992 16:53:58 +0000 (16:53 +0000)
committerGuido van Rossum <guido@python.org>
Thu, 6 Aug 1992 16:53:58 +0000 (16:53 +0000)
Modules/selectmodule.c

index 3a5644b446a17ebeb683d339a30bbad3c89d0fb6..be2b062eaaef82b8b8f4372fa5eb4b70e3863b54 100644 (file)
@@ -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);