diff options
author | Brian Behlendorf <[email protected]> | 2009-03-11 13:57:47 -0700 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2009-03-11 13:57:47 -0700 |
commit | 3226eea15761ad18c1f721b5f65c4daecc41dc42 (patch) | |
tree | 11ef4cc255b91b32eec9c14620b8c87dadd135c0 /module/zfs/zfs_fuid.c | |
parent | ba528721da4d12474117ba5cb87c5d9befaaa319 (diff) |
Resolve additional cases where gcc wants extra parenthesis.
These were introduced by the rebase to b108.
Diffstat (limited to 'module/zfs/zfs_fuid.c')
-rw-r--r-- | module/zfs/zfs_fuid.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/zfs/zfs_fuid.c b/module/zfs/zfs_fuid.c index 286dafba8..ce2bc9303 100644 --- a/module/zfs/zfs_fuid.c +++ b/module/zfs/zfs_fuid.c @@ -161,12 +161,12 @@ zfs_fuid_table_destroy(avl_tree_t *idx_tree, avl_tree_t *domain_tree) void *cookie; cookie = NULL; - while (domnode = avl_destroy_nodes(domain_tree, &cookie)) + while ((domnode = avl_destroy_nodes(domain_tree, &cookie))) ksiddomain_rele(domnode->f_ksid); avl_destroy(domain_tree); cookie = NULL; - while (domnode = avl_destroy_nodes(idx_tree, &cookie)) + while ((domnode = avl_destroy_nodes(idx_tree, &cookie))) kmem_free(domnode, sizeof (fuid_domain_t)); avl_destroy(idx_tree); } |