mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2026-05-25 03:37:45 +03:00
Fix gcc missing parenthesis warnings
Gcc -Wall warn: 'missing parenthesis' Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
This commit is contained in:
@@ -350,7 +350,7 @@ mze_destroy(zap_t *zap)
|
||||
mzap_ent_t *mze;
|
||||
void *avlcookie = NULL;
|
||||
|
||||
while (mze = avl_destroy_nodes(&zap->zap_m.zap_avl, &avlcookie))
|
||||
while ((mze = avl_destroy_nodes(&zap->zap_m.zap_avl, &avlcookie)))
|
||||
kmem_free(mze, sizeof (mzap_ent_t));
|
||||
avl_destroy(&zap->zap_m.zap_avl);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user