From b5411618f727c4ce5f787bb97d1c87f20c66027a Mon Sep 17 00:00:00 2001 From: Brian Behlendorf Date: Wed, 26 Apr 2023 11:49:16 -0700 Subject: [PATCH] Fix checkstyle warning Resolve a missed checkstyle warning. Reviewed-by: Alexander Motin Reviewed-by: Mateusz Guzik Reviewed-by: George Melikov Signed-off-by: Brian Behlendorf Closes #14799 --- module/os/freebsd/zfs/zfs_ctldir.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/os/freebsd/zfs/zfs_ctldir.c b/module/os/freebsd/zfs/zfs_ctldir.c index 420d887b661e..28445a18b809 100644 --- a/module/os/freebsd/zfs/zfs_ctldir.c +++ b/module/os/freebsd/zfs/zfs_ctldir.c @@ -686,7 +686,7 @@ zfsctl_root_readdir(struct vop_readdir_args *ap) * The check below facilitates the idiom of repeating calls until the * count to return is 0. */ - if (zfs_uio_offset(&uio) == 3 * sizeof(entry)) { + if (zfs_uio_offset(&uio) == 3 * sizeof (entry)) { return (0); }