From 6fb6b8cdd8c5c85ce2d2ead30009a9783671f63d Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Sun, 26 Jun 2011 17:23:22 -0700 Subject: [PATCH] Reorder for consistency. --- src/microcode/confshared.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/microcode/confshared.h b/src/microcode/confshared.h index e8cd15388..d047a8c2a 100644 --- a/src/microcode/confshared.h +++ b/src/microcode/confshared.h @@ -135,10 +135,10 @@ USA. #endif #ifndef TIME_T_MAX -# if SIZEOF_TIME_T == SIZEOF_INTMAX_T -# define TIME_T_MAX INTMAX_MAX -# else +# if SIZEOF_TIME_T < SIZEOF_INTMAX_T # define TIME_T_MAX (~ ((~ ((intmax_t) 0)) << (CHAR_BIT * SIZEOF_TIME_T))) +# else +# define TIME_T_MAX INTMAX_MAX # endif #endif -- 2.25.1