kdc: typos in MAX_TIME macros
This commit is contained in:
committed by
Nico Williams
parent
2194be6c92
commit
cdc82913d5
+3
-4
@@ -37,16 +37,15 @@
|
||||
#if SIZEOF_TIME_T == 4
|
||||
#define MAX_TIME ((time_t)INT32_MAX)
|
||||
#elif SIZEOF_TIME_T == 8
|
||||
#define MAX_TIME ((time_t)INT32_MAX)
|
||||
#define MAX_TIME ((time_t)INT64_MAX)
|
||||
#else
|
||||
#error "Unexpected sizeof(time_t)"
|
||||
#endif
|
||||
#else
|
||||
|
||||
#if SIZEOF_TIME_T == 4
|
||||
#define MAX_TIME ((time_t)INT32_MAX)
|
||||
#define MAX_TIME ((time_t)UINT32_MAX)
|
||||
#else
|
||||
#define MAX_TIME ((time_t)INT32_MAX)
|
||||
#define MAX_TIME ((time_t)UINT64_MAX)
|
||||
#endif
|
||||
#endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user