1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* signal.c (ruby_abort): fix typo in r39354 [Bug #5014]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39382 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ngoto 2013-02-22 06:02:54 +00:00
parent 3f2ce6373f
commit c84a9acb28
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Fri Feb 22 14:55:41 2013 Naohisa Goto <ngotogenome@gmail.com>
* signal.c (ruby_abort): fix typo in r39354 [Bug #5014]
Fri Feb 22 12:46:41 2013 Nobuyoshi Nakada <nobu@ruby-lang.org>
* random.c (rb_random_ulong_limited): fix error message for negative

View file

@ -644,7 +644,7 @@ static void ruby_abort(void)
/* Solaris's abort() is async signal unsafe. Of course, it is not
* POSIX compliant.
*/
raise(SIGABRT)
raise(SIGABRT);
#else
abort();
#endif