summaryrefslogtreecommitdiff
path: root/src/io_uring.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/io_uring.c')
-rw-r--r--src/io_uring.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/io_uring.c b/src/io_uring.c
index d9c1511..bf79b9f 100644
--- a/src/io_uring.c
+++ b/src/io_uring.c
@@ -189,12 +189,11 @@ err:
* contains the necessary information to read/write to the rings.
*/
int io_uring_queue_init(unsigned entries, struct io_uring_params *p,
- struct iovec *iovecs, unsigned nr_iovecs,
struct io_uring *ring)
{
int fd, ret;
- fd = io_uring_setup(entries, iovecs, nr_iovecs, p);
+ fd = io_uring_setup(entries, p);
if (fd < 0)
return fd;