diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2005-07-05 05:16:57 +0000 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2005-07-05 05:16:57 +0000 |
commit | aeecb8f89f735e3892d2b5f07847216320472939 (patch) | |
tree | 9791d99280d8b820a0369a490c076e7fb1e97db6 | |
parent | 6ef09ecf576d09e47e4e6b84975c3bfc89d41138 (diff) | |
download | coreutils-aeecb8f89f735e3892d2b5f07847216320472939.tar.xz |
(VERIFY_W_TYPEOF): Adjust to verify.h change.
-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 |