diff options
author | Damien Doligez <damien.doligez-inria.fr> | 1999-11-29 19:04:56 +0000 |
---|---|---|
committer | Damien Doligez <damien.doligez-inria.fr> | 1999-11-29 19:04:56 +0000 |
commit | 44c244d3110393a0db0daeb06cc6114dab48073f (patch) | |
tree | e7873f34f2d0292d2b95657805d9f76d030883c8 /otherlibs/win32unix/select.c | |
parent | 7cbb370448df987884d740f49f7e3b86e6914482 (diff) |
tabs -> spaces
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@2638 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'otherlibs/win32unix/select.c')
-rw-r--r-- | otherlibs/win32unix/select.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/otherlibs/win32unix/select.c b/otherlibs/win32unix/select.c index 12f6e1b9e..a8e92088b 100644 --- a/otherlibs/win32unix/select.c +++ b/otherlibs/win32unix/select.c @@ -35,10 +35,10 @@ static value fdset_to_fdlist(value fdlist, fd_set *fdset) for (/*nothing*/; fdlist != Val_int(0); fdlist = Field(fdlist, 1)) { value s = Field(fdlist, 0); if (FD_ISSET((SOCKET) Handle_val(s), fdset)) { - value newres = alloc_small(2, 0); - Field(newres, 0) = s; - Field(newres, 1) = res; - res = newres; + value newres = alloc_small(2, 0); + Field(newres, 0) = s; + Field(newres, 1) = res; + res = newres; } } End_roots(); |