From 93dca34bb04701680beef04f22bbc6e6e28b03fd Mon Sep 17 00:00:00 2001 From: =?utf8?q?Wilfried=20G=C3=B6esgens?= Date: Sat, 13 Oct 2007 14:34:39 +0000 Subject: [PATCH] * we need to compare sizeof int to sizeof sizet to switch this between 32 and 64 bits. --- citadel/sysdep_decls.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/citadel/sysdep_decls.h b/citadel/sysdep_decls.h index 17cb5b63f..59343207e 100644 --- a/citadel/sysdep_decls.h +++ b/citadel/sysdep_decls.h @@ -15,10 +15,10 @@ #include "sysdep.h" #include "server.h" -#if SIZEOF_SIZE_T == SIZEOF_LONG -#define SIZE_T_FMT "%ld" -#else +#if SIZEOF_SIZE_T == SIZEOF_INT #define SIZE_T_FMT "%d" +#else +#define SIZE_T_FMT "%ld" #endif -- 2.39.2