diff options
author | Christopher Faylor <me@cgf.cx> | 2002-09-23 00:31:31 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-09-23 00:31:31 +0000 |
commit | f0227ea3c78d8d23dc35f0939219649447eecfae (patch) | |
tree | 0a116e294fa35db8a66901f6ef85b41720913c2f /winsup/cygwin/localtime.cc | |
parent | c87c8a533f9e917878d433956420953598ab6cd6 (diff) | |
download | newlib-f0227ea3c78d8d23dc35f0939219649447eecfae.zip newlib-f0227ea3c78d8d23dc35f0939219649447eecfae.tar.gz newlib-f0227ea3c78d8d23dc35f0939219649447eecfae.tar.bz2 |
More GNUify non-GNU formatted functions calls throughout.
Diffstat (limited to 'winsup/cygwin/localtime.cc')
-rw-r--r-- | winsup/cygwin/localtime.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/winsup/cygwin/localtime.cc b/winsup/cygwin/localtime.cc index 8267bde..3000eaf 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); |