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:
parent
3f2ce6373f
commit
c84a9acb28
2 changed files with 5 additions and 1 deletions
|
@ -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
|
||||
|
|
2
signal.c
2
signal.c
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue