From 54d0c1c2967a53c705a241014b3c51ea71579046 Mon Sep 17 00:00:00 2001 From: "chao.an" Date: Mon, 9 Nov 2020 12:03:17 +0800 Subject: [PATCH] sys/uio: fix nxstyle warning Signed-off-by: chao.an --- include/sys/uio.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/sys/uio.h b/include/sys/uio.h index 7f0a56dc92..a7ce94cd52 100644 --- a/include/sys/uio.h +++ b/include/sys/uio.h @@ -111,9 +111,9 @@ ssize_t readv(int fildes, FAR const struct iovec *iov, int iovcnt); * Description: * The writev() function is equivalent to write(), except as described * below. The writev() function will gather output data from the 'iovcnt' - * buffers specified by the members of the 'iov' array: iov[0], iov[1], ..., - * iov[iovcnt-1]. The 'iovcnt' argument is valid if greater than 0 and less - * than or equal to IOV_MAX, as defined in limits.h. + * buffers specified by the members of the 'iov' array: iov[0], iov[1], + * ..., iov[iovcnt-1]. The 'iovcnt' argument is valid if greater than 0 + * and less than or equal to IOV_MAX, as defined in limits.h. * * Each iovec entry specifies the base address and length of an area in * memory from which data should be written. The writev() function always