diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2010-05-26 10:16:57 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2010-05-26 10:16:57 +0300 |
commit | 703d2c33c095c41ae0693ee8c27c45e3847e4535 (patch) | |
tree | 7baa0cb81ef9fc2a78c83cf27a4be5d0af2ad48c /src/common/sysdefs.h | |
parent | Remove the Subblock filter code for now. (diff) | |
download | xz-703d2c33c095c41ae0693ee8c27c45e3847e4535.tar.xz |
Better #error message.
Diffstat (limited to '')
-rw-r--r-- | src/common/sysdefs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/sysdefs.h b/src/common/sysdefs.h index 97a1c045..61ac0b40 100644 --- a/src/common/sysdefs.h +++ b/src/common/sysdefs.h @@ -102,11 +102,11 @@ # elif SIZEOF_SIZE_T == 8 # define SIZE_MAX UINT64_MAX # else -# error sizeof(size_t) is not 32-bit or 64-bit +# error size_t is not 32-bit or 64-bit # endif #endif #if SIZE_MAX != UINT32_MAX && SIZE_MAX != UINT64_MAX -# error sizeof(size_t) is not 32-bit or 64-bit +# error size_t is not 32-bit or 64-bit #endif #include <stdlib.h> |