Replaced max=-1 by max = -1.

This commit is contained in:
Guido van Rossum 1992-08-06 16:53:58 +00:00
parent ff4949eeee
commit de126a6ff8
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ list2set(list, set, fd2obj)
fd_set *set; fd_set *set;
object *fd2obj[FD_SETSIZE]; object *fd2obj[FD_SETSIZE];
{ {
int i, len, v, max=-1; int i, len, v, max = -1;
object *o, *filenomethod, *fno; object *o, *filenomethod, *fno;
FD_ZERO(set); FD_ZERO(set);