Skip to content

Commit

Permalink
gc.c: fix commit miss r54145
Browse files Browse the repository at this point in the history
* gc.c (tick): fix missing close parenthesis.  [Fix rubyGH-1291]

git-svn-id: svn+ssh://svn.ruby-lang.org/ruby/trunk@54170 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
nobu committed Mar 18, 2016
1 parent 650ae89 commit 9f556bf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion gc.c
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down

0 comments on commit 9f556bf

Please sign in to comment.