1
0
Fork 0
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:
nobu 2016-03-18 03:25:32 +00:00
parent 5f11a6eb6c
commit 7e81ca14fe
2 changed files with 5 additions and 1 deletions

View file

@ -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>
* ext/date/date_core.c (datetime_to_time): preserve timezone info

2
gc.c
View file

@ -936,7 +936,7 @@ tick(void)
}
#elif defined(__powerpc64__) && \
( __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 8)
(__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 8))
typedef unsigned long long tick_t;
#define PRItick "llu"