diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-03-14 16:21:52 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-03-14 16:21:52 +0000 |
commit | d24540f5bbf42cf6b93c3174aaa780c581954ec1 (patch) | |
tree | 456d25f42484ca9a0dfbb443fc156c843beccf3e | |
parent | 844c04f462e0677c2723789325366f233cbd0a01 (diff) |
file.c: insert separator
* file.c (rb_sys_fail_path0): insert separator between function name
and path name.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39755 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | file.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -109,6 +109,7 @@ static void rb_sys_fail_path0(const char *func_name, VALUE path) { VALUE mesg = rb_str_new_cstr(func_name); + rb_str_buf_cat2(mesg, ": "); rb_str_buf_append(mesg, path); rb_sys_fail_str(mesg); } |