Commit 16c34d62 authored by Ondřej Nový's avatar Ondřej Nový Committed by Lasse Karstensen

Polish

parent 166516e7
......@@ -64,7 +64,7 @@ VSUB_closefrom(int fd)
#else
int i = sysconf(_SC_OPEN_MAX);
assert(i > 0);
for (i = sysconf(_SC_OPEN_MAX); i > fd; i--)
for (; i > fd; i--)
(void)close(i);
#endif
}
......
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