mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
gc.c: fix commit miss r54145
* gc.c (tick): fix missing close parenthesis. [Fix GH-1291] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54170 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
5f11a6eb6c
commit
7e81ca14fe
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
Fri Mar 18 12:25:30 2016 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* gc.c (tick): fix missing close parenthesis. [Fix GH-1291]
|
||||||
|
|
||||||
Fri Mar 18 10:24:12 2016 Naotoshi Seo <sonots@gmail.com>
|
Fri Mar 18 10:24:12 2016 Naotoshi Seo <sonots@gmail.com>
|
||||||
|
|
||||||
* ext/date/date_core.c (datetime_to_time): preserve timezone info
|
* ext/date/date_core.c (datetime_to_time): preserve timezone info
|
||||||
|
|
2
gc.c
2
gc.c
|
@ -936,7 +936,7 @@ tick(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
#elif defined(__powerpc64__) && \
|
#elif defined(__powerpc64__) && \
|
||||||
( __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 8)
|
(__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 8))
|
||||||
typedef unsigned long long tick_t;
|
typedef unsigned long long tick_t;
|
||||||
#define PRItick "llu"
|
#define PRItick "llu"
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue