Commit 55248935 authored by Guido van Rossum's avatar Guido van Rossum

Replaced max=-1 by max = -1.

parent 3c4423ca
...@@ -38,7 +38,7 @@ list2set(list, set, fd2obj) ...@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment