diff options
author | Damien Doligez <damien.doligez-inria.fr> | 1997-05-19 15:42:21 +0000 |
---|---|---|
committer | Damien Doligez <damien.doligez-inria.fr> | 1997-05-19 15:42:21 +0000 |
commit | 03ec746bf1afc498c91a4bff3a3f80d873594b95 (patch) | |
tree | 2d628930d146a469503d32f62181997a75e459a3 /otherlibs/win32unix/sockopt.c | |
parent | 9f30d68f00c8933445d45416dcc7f67c7f1ca934 (diff) |
deTABisation
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@1563 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'otherlibs/win32unix/sockopt.c')
-rw-r--r-- | otherlibs/win32unix/sockopt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/otherlibs/win32unix/sockopt.c b/otherlibs/win32unix/sockopt.c index a3832cb21..c858627a5 100644 --- a/otherlibs/win32unix/sockopt.c +++ b/otherlibs/win32unix/sockopt.c @@ -37,7 +37,7 @@ value unix_setsockopt(socket, option, status) /* ML */ int optval = Int_val(status); if (setsockopt(_get_osfhandle(Int_val(socket)), SOL_SOCKET, sockopt[Int_val(option)], - (char *) &optval, sizeof(optval)) == -1) + (char *) &optval, sizeof(optval)) == -1) uerror("setsockopt", Nothing); return Val_unit; } |