Reorder for consistency.
authorChris Hanson <org/chris-hanson/cph>
Mon, 27 Jun 2011 00:23:22 +0000 (17:23 -0700)
committerChris Hanson <org/chris-hanson/cph>
Mon, 27 Jun 2011 00:23:22 +0000 (17:23 -0700)
src/microcode/confshared.h

index e8cd153886e99f360fb860beac76cc96beb5f26c..d047a8c2af783d7d8fd811c6a7cf6315f1826b17 100644 (file)
@@ -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