The branch main has been updated by 0mp:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=8740d7e4d183189d259163aa30179ad14c77c0c4

commit 8740d7e4d183189d259163aa30179ad14c77c0c4
Author:     Mateusz Piotrowski <[email protected]>
AuthorDate: 2025-12-01 18:32:21 +0000
Commit:     Mateusz Piotrowski <[email protected]>
CommitDate: 2025-12-04 15:18:55 +0000

    uio.h: Indent struct uio according to style(9)
    
    Approved by:    christos (mentor)
    MFC after:      3 days
    Differential Revision:  https://reviews.freebsd.org/D54071
---
 sys/sys/uio.h | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/sys/sys/uio.h b/sys/sys/uio.h
index 05c1ed640b63..58bb7b13b253 100644
--- a/sys/sys/uio.h
+++ b/sys/sys/uio.h
@@ -50,13 +50,13 @@ typedef     __off_t off_t;
 #ifdef _KERNEL
 
 struct uio {
-       struct  iovec *uio_iov;         /* scatter/gather list */
-       int     uio_iovcnt;             /* length of scatter/gather list */
-       off_t   uio_offset;             /* offset in target object */
-       ssize_t uio_resid;              /* remaining bytes to process */
-       enum    uio_seg uio_segflg;     /* address space */
-       enum    uio_rw uio_rw;          /* operation */
-       struct  thread *uio_td;         /* owner */
+       struct iovec    *uio_iov;       /* scatter/gather list */
+       int              uio_iovcnt;    /* length of scatter/gather list */
+       off_t            uio_offset;    /* offset in target object */
+       ssize_t          uio_resid;     /* remaining bytes to process */
+       enum uio_seg     uio_segflg;    /* address space */
+       enum uio_rw      uio_rw;        /* operation */
+       struct thread   *uio_td;        /* owner */
 };
 
 /*

Reply via email to