Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix incorrect return types. Fixes #275. #276

Merged
merged 1 commit into from Jul 30, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions ext/libev/ev_iouring.c
Expand Up @@ -287,7 +287,7 @@ iouring_sqe_get (EV_P)
}

inline_size
struct io_uring_sqe *
void
iouring_sqe_submit (EV_P_ struct io_uring_sqe *sqe)
{
unsigned idx = sqe - EV_SQES;
Expand All @@ -313,7 +313,7 @@ iouring_tfd_cb (EV_P_ struct ev_io *w, int revents)

/* called for full and partial cleanup */
ecb_cold
static int
static void
iouring_internal_destroy (EV_P)
{
close (iouring_tfd);
Expand Down