mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2026-05-23 10:54:35 +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:
+1
-1
@@ -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))
|
||||
|
||||
Reference in New Issue
Block a user