Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2020-03-11 15:23:55 +0300
committerCorinna Vinschen <corinna@vinschen.de>2020-03-11 15:45:58 +0300
commitd2ef2331f9ec4cc6510cab5cd540bb3c3c863ca8 (patch)
tree2ec6acd02a3e5f26b334c92d7d4b702cfda4738e /winsup/cygwin/libc/strptime.cc
parent256bc8bde00071b42dad4caf23ddda037d34c5fd (diff)
Cygwin: fix formatting: drop spaces leading tabs
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
Diffstat (limited to 'winsup/cygwin/libc/strptime.cc')
-rw-r--r--winsup/cygwin/libc/strptime.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/winsup/cygwin/libc/strptime.cc b/winsup/cygwin/libc/strptime.cc
index 4cd9256bc..cbb3e0ce9 100644
--- a/winsup/cygwin/libc/strptime.cc
+++ b/winsup/cygwin/libc/strptime.cc
@@ -703,8 +703,8 @@ literal:
const unsigned char *ep;
ep = find_string(bp, &i,
- (const char * const *)tzname,
- NULL, 2, locale);
+ (const char * const *)tzname,
+ NULL, 2, locale);
if (ep != NULL) {
tm->tm_isdst = i;
#ifdef TM_GMTOFF
@@ -750,7 +750,7 @@ literal:
/* Check if year falls into the era. If not, it's an
invalid combination of era and offset. */
if (era->start.tm_year > tm->tm_year
- || era->end.tm_year < tm->tm_year)
+ || era->end.tm_year < tm->tm_year)
return NULL;
tm->tm_year -= TM_YEAR_BASE;
}