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

* io.c, process.c, time.c, ext: use rb_sys_fail_str instead of

rb_sys_fail.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34825 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2012-02-27 01:50:27 +00:00
parent 2c3cc479a9
commit 80429eed63
12 changed files with 79 additions and 65 deletions

View file

@ -62,7 +62,7 @@ rsock_init_unixsock(VALUE sock, VALUE path, int server)
if (status < 0) {
close(fd);
rb_sys_fail(sockaddr.sun_path);
rb_sys_fail_str(path);
}
if (server) {