Use correct ASSERT3* variant

ASSERT3P should be used instead of ASSERT3U when comparing
pointers.  Using ASSERT3U with the cast causes a compiler
warning for 32-bit builds which is fatal with --enable-debug.
This commit is contained in:
Brian Behlendorf 2011-02-23 15:03:30 -08:00
parent 05ff35c602
commit 99c564bc48
1 changed files with 1 additions and 1 deletions

View File

@ -2488,7 +2488,7 @@ top:
SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_MODE(zsb), NULL,
&new_mode, sizeof (new_mode));
zp->z_mode = new_mode;
ASSERT3U((uintptr_t)aclp, !=, NULL);
ASSERT3P(aclp, !=, NULL);
err = zfs_aclset_common(zp, aclp, cr, tx);
ASSERT3U(err, ==, 0);
if (zp->z_acl_cached)