From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2155) id 5149C383F84B; Mon, 4 May 2020 09:20:41 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 5149C383F84B Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Corinna Vinschen To: cygwin-cvs@sourceware.org Subject: [newlib-cygwin] localtime 1.76 X-Act-Checkin: newlib-cygwin X-Git-Author: Corinna Vinschen X-Git-Refname: refs/heads/master X-Git-Oldrev: 65bf580752db7ac01ecae19dc56aa26ea34f5e47 X-Git-Newrev: 0f4bda879283eaf013f86dd80e5588721a811ea0 Message-Id: <20200504092041.5149C383F84B@sourceware.org> Date: Mon, 4 May 2020 09:20:41 +0000 (GMT) X-BeenThere: cygwin-cvs@cygwin.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Cygwin core component git logs List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 May 2020 09:20:41 -0000 https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=0f4bda879283eaf013f86dd80e5588721a811ea0 commit 0f4bda879283eaf013f86dd80e5588721a811ea0 Author: Corinna Vinschen Date: Tue Apr 28 20:57:34 2020 +0200 localtime 1.76 Diff: --- winsup/cygwin/localtime.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/winsup/cygwin/localtime.cc b/winsup/cygwin/localtime.cc index 3de1e2956..2c8cee38d 100644 --- a/winsup/cygwin/localtime.cc +++ b/winsup/cygwin/localtime.cc @@ -482,12 +482,12 @@ static struct tm * gmtsub(const timezone_t sp, const time_t *timep, static struct tm * localsub(const timezone_t sp, const time_t *timep, const int_fast32_t offset, struct tm *tmp); static int increment_overflow(int * number, int delta); -static int leaps_thru_end_of(int y) ATTRIBUTE_PURE; static int increment_overflow32(int_fast32_t * number, int delta); -static int normalize_overflow32(int_fast32_t * tensptr, - int * unitsptr, int base); +static int leaps_thru_end_of(int y) ATTRIBUTE_PURE; static int normalize_overflow(int * tensptr, int * unitsptr, int base); +static int normalize_overflow32(int_fast32_t * tensptr, + int * unitsptr, int base); static void settzname(void); static time_t time1(const timezone_t sp, struct tm * const tmp, subfun_t funcp, const int_fast32_t offset);