Skip to content

Commit

Permalink
Fix checkstyle warning
Browse files Browse the repository at this point in the history
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
  • Loading branch information
behlendorf committed May 30, 2023
1 parent 092021b commit 45c4b3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion module/os/freebsd/zfs/zfs_ctldir.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down

0 comments on commit 45c4b3e

Please sign in to comment.