Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
eio-emul: Cast eio_custom method to void(*)(eio_req*)
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacs committed Jun 19, 2012
1 parent 1b22f53 commit 5cfe0b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/eio-emul.h
Expand Up @@ -66,7 +66,7 @@
# define eio_link(a,b,c,d,e) eio_link(a,b,c,d,e,(&uv_default_loop()->uv_eio_channel))
# define eio_symlink(a,b,c,d,e) eio_symlink(a,b,c,d,e,(&uv_default_loop()->uv_eio_channel))
# define eio_rename(a,b,c,d,e) eio_rename(a,b,c,d,e,(&uv_default_loop()->uv_eio_channel))
# define eio_custom(a,b,c,d) eio_custom(a,b,c,d,(&uv_default_loop()->uv_eio_channel))
# define eio_custom(a,b,c,d) eio_custom((void (*)(eio_req*))a,b,c,d,(&uv_default_loop()->uv_eio_channel))
# define eio_grp(a,b) eio_grp(a,b,(&uv_default_loop()->uv_eio_channel))
# endif /* !_WIN32 */

Expand Down

0 comments on commit 5cfe0b8

Please sign in to comment.