diff options
-rw-r--r-- | src/system.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/system.h b/src/system.h index 85a539954..c513de32c 100644 --- a/src/system.h +++ b/src/system.h @@ -811,7 +811,7 @@ ptr_align (void const *ptr, size_t alignment) TYPEOF_REQUIREMENT is nonzero at compile time. If the compiler does not support __typeof__, do nothing. */ #if HAVE_TYPEOF -# define VERIFY_W_TYPEOF(typeof_requirement) verify (typeof_requirement) +# define VERIFY_W_TYPEOF(typeof_requirement) verify_expr (typeof_requirement) #else # define VERIFY_W_TYPEOF(typeof_requirement) ((void) 0) #endif |