From 24b633e7a43412775100a9a4374bdc34bef62d44 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Wilfried=20G=C3=B6esgens?= Date: Wed, 12 Sep 2007 18:52:20 +0000 Subject: [PATCH] * compare SIZEOF_SIZE_T with SIZEOF_LONG rather than a digit. Thanks IG --- citadel/sysdep_decls.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/citadel/sysdep_decls.h b/citadel/sysdep_decls.h index b880d09ac..17cb5b63f 100644 --- a/citadel/sysdep_decls.h +++ b/citadel/sysdep_decls.h @@ -15,7 +15,7 @@ #include "sysdep.h" #include "server.h" -#if SIZEOF_SIZE_T == 8 +#if SIZEOF_SIZE_T == SIZEOF_LONG #define SIZE_T_FMT "%ld" #else #define SIZE_T_FMT "%d" -- 2.39.2