diff options
author | Brian Behlendorf <[email protected]> | 2023-04-26 11:49:16 -0700 |
---|---|---|
committer | GitHub <[email protected]> | 2023-04-26 11:49:16 -0700 |
commit | b5411618f727c4ce5f787bb97d1c87f20c66027a (patch) | |
tree | 430c4a60d4d5e85f344f041f1f25ec117d851961 /module | |
parent | bba7cbf0a481ab16f9a9a4874b7dbd5682e4d3a4 (diff) |
Fix checkstyle warning
Resolve a missed checkstyle warning.
Reviewed-by: Alexander Motin <[email protected]>
Reviewed-by: Mateusz Guzik <[email protected]>
Reviewed-by: George Melikov <[email protected]>
Signed-off-by: Brian Behlendorf <[email protected]>
Closes #14799
Diffstat (limited to 'module')
-rw-r--r-- | module/os/freebsd/zfs/zfs_ctldir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/os/freebsd/zfs/zfs_ctldir.c b/module/os/freebsd/zfs/zfs_ctldir.c index 420d887b6..28445a18b 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); } |