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:
authorChristopher Faylor <me@cgf.cx>2002-09-23 04:31:31 +0400
committerChristopher Faylor <me@cgf.cx>2002-09-23 04:31:31 +0400
commitf0227ea3c78d8d23dc35f0939219649447eecfae (patch)
tree0a116e294fa35db8a66901f6ef85b41720913c2f /winsup/cygwin/localtime.cc
parentc87c8a533f9e917878d433956420953598ab6cd6 (diff)
More GNUify non-GNU formatted functions calls throughout.
Diffstat (limited to 'winsup/cygwin/localtime.cc')
-rw-r--r--winsup/cygwin/localtime.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/winsup/cygwin/localtime.cc b/winsup/cygwin/localtime.cc
index 8267bdebb..3000eaffd 100644
--- a/winsup/cygwin/localtime.cc
+++ b/winsup/cygwin/localtime.cc
@@ -777,8 +777,8 @@ tzload(const char *name, struct state *sp)
if (fid == -2)
{
- memcpy(u.buf, _posixrules_data, sizeof(_posixrules_data));
- i = sizeof(_posixrules_data);
+ memcpy(u.buf, _posixrules_data, sizeof (_posixrules_data));
+ i = sizeof (_posixrules_data);
}
else
{
@@ -1473,7 +1473,7 @@ tzset P((void))
if (lcl_is_set > 0 && strcmp(lcl_TZname, name) == 0)
return;
- lcl_is_set = (strlen(name) < sizeof(lcl_TZname));
+ lcl_is_set = (strlen(name) < sizeof (lcl_TZname));
if (lcl_is_set)
(void) strcpy(lcl_TZname, name);