From: Wilfried Göesgens Date: Wed, 12 Sep 2007 18:52:20 +0000 (+0000) Subject: * compare SIZEOF_SIZE_T with SIZEOF_LONG rather than a digit. Thanks IG X-Git-Tag: v7.86~3074 X-Git-Url: https://code.citadel.org/?a=commitdiff_plain;h=24b633e7a43412775100a9a4374bdc34bef62d44;p=citadel.git * compare SIZEOF_SIZE_T with SIZEOF_LONG rather than a digit. Thanks IG --- 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"