From 703d2c33c095c41ae0693ee8c27c45e3847e4535 Mon Sep 17 00:00:00 2001 From: Lasse Collin Date: Wed, 26 May 2010 10:16:57 +0300 Subject: [PATCH] Better #error message. --- src/common/sysdefs.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/sysdefs.h b/src/common/sysdefs.h index 97a1c04..61ac0b4 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 -- 2.39.2