From d6d2e95044ccfe6092d979928b480d1ffad1678c Mon Sep 17 00:00:00 2001 From: Hartmut Birr Date: Thu, 3 Oct 2002 17:17:35 +0000 Subject: [PATCH] Fixed the start value for the time calculation in time2. svn path=/trunk/; revision=3603 --- reactos/lib/msvcrt/time/ctime.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/lib/msvcrt/time/ctime.c b/reactos/lib/msvcrt/time/ctime.c index 344301202cf..b34b515467e 100644 --- a/reactos/lib/msvcrt/time/ctime.c +++ b/reactos/lib/msvcrt/time/ctime.c @@ -1323,7 +1323,7 @@ time2(struct tm *tmp, void (*const funcp)(const time_t *const,const long,struct ** If time_t is signed, then 0 is the median value, ** if time_t is unsigned, then 1 << bits is median. */ - t = (time_t) 1 << bits; + t = (time_t) ((1 << bits) - 1); for ( ; ; ) { (*funcp)(&t, offset, &mytm);