mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 13:39:04 +02:00
merge revision(s) 57172: [Backport #13066]
time.c: fix type of usec2subsecx * time.c (usec2subsecx): fix return type, which is a numeric object but not a long int. [ruby-dev:49912] [Bug #13066] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_3@57567 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
24a5758001
commit
15fbd0aa9b
2 changed files with 2 additions and 2 deletions
2
time.c
2
time.c
|
@ -2603,7 +2603,7 @@ obj2subsecx(VALUE obj, VALUE *subsecx)
|
|||
return obj2ubits(obj, 6); /* vtm->sec */
|
||||
}
|
||||
|
||||
static long
|
||||
static VALUE
|
||||
usec2subsecx(VALUE obj)
|
||||
{
|
||||
if (RB_TYPE_P(obj, T_STRING)) {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#define RUBY_VERSION "2.3.3"
|
||||
#define RUBY_RELEASE_DATE "2017-02-08"
|
||||
#define RUBY_PATCHLEVEL 239
|
||||
#define RUBY_PATCHLEVEL 240
|
||||
|
||||
#define RUBY_RELEASE_YEAR 2017
|
||||
#define RUBY_RELEASE_MONTH 2
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue