* strftime.c (rb_strftime_with_timespec): add an interim digit for
the timezone offset which is less than an hour. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35377 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
9e56e14f50
commit
442fefc78a
@ -1,3 +1,8 @@
|
|||||||
|
Wed Apr 18 10:22:54 2012 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* strftime.c (rb_strftime_with_timespec): add an interim digit for
|
||||||
|
the timezone offset which is less than an hour.
|
||||||
|
|
||||||
Wed Apr 18 09:58:29 2012 Eric Hodel <drbrain@segment7.net>
|
Wed Apr 18 09:58:29 2012 Eric Hodel <drbrain@segment7.net>
|
||||||
|
|
||||||
* lib/rubygems/version.rb: Fixed init_with warning by calling into
|
* lib/rubygems/version.rb: Fixed init_with warning by calling into
|
||||||
|
@ -493,9 +493,9 @@ rb_strftime_with_timespec(char *s, size_t maxsize, const char *format, rb_encodi
|
|||||||
sign = +1;
|
sign = +1;
|
||||||
}
|
}
|
||||||
i = snprintf(s, endp - s, (padding == ' ' ? "%+*ld" : "%+.*ld"),
|
i = snprintf(s, endp - s, (padding == ' ' ? "%+*ld" : "%+.*ld"),
|
||||||
precision + 1, sign * (off / 3600));
|
precision + 2, sign * (off / 360 + 1));
|
||||||
if (i < 0) goto err;
|
if (i < 0) goto err;
|
||||||
s += i;
|
s += i - 1;
|
||||||
off = off % 3600;
|
off = off % 3600;
|
||||||
if (1 <= colons)
|
if (1 <= colons)
|
||||||
*s++ = ':';
|
*s++ = ':';
|
||||||
|
Loading…
x
Reference in New Issue
Block a user