Skip to content

Commit

Permalink
lib: Fix again test-utc-mktime with 32bit time_t
Browse files Browse the repository at this point in the history
  • Loading branch information
sirainen committed Feb 21, 2017
1 parent 87e4dd1 commit d89a40c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/test-utc-mktime.c
Expand Up @@ -17,12 +17,12 @@ void test_utc_mktime(void)
#endif
#if (TIME_T_MAX_BITS > 32 || !defined(TIME_T_SIGNED))
{ 2106, 2, 7, 6, 28, 15, 4294967295 },
{ 2038, 1, 19, 3, 14, 8, 2147483648 },
#endif
{ 2007, 11, 7, 1, 7, 20, 1194397640 },
{ 1970, 1, 1, 0, 0, 0, 0 },
{ 2038, 1, 19, 3, 14, 7, 2147483647 },
{ INT_MAX, INT_MAX, INT_MAX, INT_MAX, INT_MAX, INT_MAX, -1 },
{ 2038, 1, 19, 3, 14, 8, 2147483648 },
{ 2106, 2, 7, 6, 28, 15, 4294967295 },
#if TIME_T_MAX_BITS > 32
{ 2106, 2, 7, 6, 28, 16, 4294967296 },
Expand Down

0 comments on commit d89a40c

Please sign in to comment.