mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 01:51:00 +03:00
Add missing () to quiet warnings in NDEBUG case
git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@128 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c
This commit is contained in:
parent
3ce1bc96f9
commit
41cf38df92
@ -210,7 +210,7 @@ struct page_collection {
|
||||
#define ASSERTF(x, y, z...) ((void)0)
|
||||
#define VERIFY(x) ((void)(x))
|
||||
|
||||
#define VERIFY3_IMPL(x, y, z, t, f, c) if (x == z) ((void)0)
|
||||
#define VERIFY3_IMPL(x, y, z, t, f, c) if ((x) == (z)) ((void)0)
|
||||
|
||||
#define VERIFY3S(x,y,z) VERIFY3_IMPL(x, y, z, int64_t, "%ld", (long))
|
||||
#define VERIFY3U(x,y,z) VERIFY3_IMPL(x, y, z, uint64_t, "%lu", (unsigned long))
|
||||
|
Loading…
Reference in New Issue
Block a user