diff options
author | Jens Axboe <axboe@kernel.dk> | 2022-02-13 15:59:02 -0700 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2022-02-13 15:59:02 -0700 |
commit | c193e22a4c9f0844390ac88e67288de3f8df5d20 (patch) | |
tree | 8254086844b2ea85c47cad64d52407259eb073f3 | |
parent | ea1e6f8c4e9180bde1844bd56a072bd4c1afae3e (diff) | |
download | liburing-c193e22a4c9f0844390ac88e67288de3f8df5d20.tar.gz liburing-c193e22a4c9f0844390ac88e67288de3f8df5d20.tar.bz2 |
man/io_uring_prep_write.3: correct passed in buffer argument
It's a write, the buffer argument is const.
Signed-off-by: Jens Axboe <axboe@kernel.dk>
-rw-r--r-- | man/io_uring_prep_write.3 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/man/io_uring_prep_write.3 b/man/io_uring_prep_write.3 index f63dcdc..25c5301 100644 --- a/man/io_uring_prep_write.3 +++ b/man/io_uring_prep_write.3 @@ -12,7 +12,7 @@ io_uring_prep_write - prepare I/O write request .PP .BI "void io_uring_prep_write(struct io_uring_sqe *sqe," .BI " int fd," -.BI " void *buf," +.BI " const void *buf," .BI " unsigned nbytes," .BI " __u64 offset)" .PP |