summaryrefslogtreecommitdiff
path: root/otherlibs/unix/select.c
diff options
context:
space:
mode:
Diffstat (limited to 'otherlibs/unix/select.c')
-rw-r--r--otherlibs/unix/select.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/otherlibs/unix/select.c b/otherlibs/unix/select.c
index a0f600c5b3..3792341c07 100644
--- a/otherlibs/unix/select.c
+++ b/otherlibs/unix/select.c
@@ -59,10 +59,10 @@ static value fdset_to_fdlist(file_descr_set *fdset)
Begin_root(res);
for (i = FD_SETSIZE - 1; i >= 0; i--) {
if (FD_ISSET(i, fdset)) {
- value newres = alloc_small(2, 0);
- Field(newres, 0) = Val_int(i);
- Field(newres, 1) = res;
- res = newres;
+ value newres = alloc_small(2, 0);
+ Field(newres, 0) = Val_int(i);
+ Field(newres, 1) = res;
+ res = newres;
}
}
End_roots();