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

* ext/fiddle/pointer.c (rb_fiddle_ptr2cptr): fix error message forgotten to be changed from DL to Fiddle.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38413 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ngoto 2012-12-15 15:04:25 +00:00
parent 438cca5720
commit 48bcb55c41
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Sat Dec 15 23:56:51 2012 Naohisa Goto <ngotogenome@gmail.com>
* ext/fiddle/pointer.c (rb_fiddle_ptr2cptr): fix error message
forgotten to be changed from DL to Fiddle.
Sat Dec 15 23:14:32 2012 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
* signal.c (default_handler): remove rb_register_sigaltstack()

View file

@ -117,7 +117,7 @@ rb_fiddle_ptr2cptr(VALUE val)
ptr = NULL;
}
else{
rb_raise(rb_eTypeError, "DL::PtrData was expected");
rb_raise(rb_eTypeError, "Fiddle::Pointer was expected");
}
return ptr;