mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2026-05-22 02:27:36 +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:
@@ -2382,7 +2382,7 @@ nvlist_xpack(nvlist_t *nvl, char **bufp, size_t *buflen, int encoding,
|
||||
*/
|
||||
nv_priv_init(&nvpriv, nva, 0);
|
||||
|
||||
if (err = nvlist_size(nvl, &alloc_size, encoding))
|
||||
if ((err = nvlist_size(nvl, &alloc_size, encoding)))
|
||||
return (err);
|
||||
|
||||
if ((buf = nv_mem_zalloc(&nvpriv, alloc_size)) == NULL)
|
||||
|
||||
Reference in New Issue
Block a user