Constified writev function family

This commit is contained in:
Nobuyoshi Nakada 2020-04-10 10:37:15 +09:00
parent 55a5a4bc03
commit 614d816a1f
No known key found for this signature in database
GPG Key ID: 7CD2805BFA3770C6

6
io.c
View File

@ -1716,7 +1716,7 @@ io_binwritev(struct iovec *iov, int iovcnt, rb_io_t *fptr)
}
static long
io_fwritev(int argc, VALUE *argv, rb_io_t *fptr)
io_fwritev(int argc, const VALUE *argv, rb_io_t *fptr)
{
int i, converted, iovcnt = argc + 1;
long n;
@ -1764,7 +1764,7 @@ iovcnt_ok(int iovcnt)
#endif /* HAVE_WRITEV */
static VALUE
io_writev(int argc, VALUE *argv, VALUE io)
io_writev(int argc, const VALUE *argv, VALUE io)
{
rb_io_t *fptr;
long n;
@ -1838,7 +1838,7 @@ rb_io_write(VALUE io, VALUE str)
}
static VALUE
rb_io_writev(VALUE io, int argc, VALUE *argv)
rb_io_writev(VALUE io, int argc, const VALUE *argv)
{
if (argc > 1 && rb_obj_method_arity(io, id_write) == 1) {
if (io != rb_stderr && RTEST(ruby_verbose)) {