Skip to content

Commit

Permalink
Fix again.
Browse files Browse the repository at this point in the history
  • Loading branch information
toots committed Aug 30, 2018
1 parent 3e34191 commit 75330bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/duppy_stubs.c
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@

#ifdef WIN32
#define Fd_val(fd) win_CRT_fd_of_filedescr(fd)
#define Val_fd(fd) assert(false)
#define Val_fd(fd) caml_failwith("Val_fd")
#else
#define Fd_val(fd) Int_val(fd)
#define Val_fd(fd) Val_int(fd)
Expand Down Expand Up @@ -144,7 +144,7 @@ CAMLprim value caml_poll(value _read, value _write, value _err, value _timeout)
}
#else
CAMLprim value caml_poll(value _read, value _write, value _err, value _timeout) {
assert(false);
caml_failwith("caml_poll");
}
#endif

Expand Down

0 comments on commit 75330bf

Please sign in to comment.