aboutsummaryrefslogtreecommitdiff
path: root/clib/cThread.ml
diff options
context:
space:
mode:
Diffstat (limited to 'clib/cThread.ml')
-rw-r--r--clib/cThread.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/clib/cThread.ml b/clib/cThread.ml
index 434b234ba1..953b51ed02 100644
--- a/clib/cThread.ml
+++ b/clib/cThread.ml
@@ -16,7 +16,7 @@ let thread_friendly_read_fd fd s ~off ~len =
let rec loop () =
try Unix.read fd s off len
with Unix.Unix_error(Unix.EINTR,_,_) -> loop ()
- in
+ in
loop ()
let thread_friendly_read ic s ~off ~len =