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

adjust style

* process.c (rb_execarg_get): adjust style.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41059 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2013-06-04 08:23:26 +00:00
parent 1699396fe5
commit 5c11384416

View file

@ -2191,8 +2191,8 @@ rb_execarg_new(int argc, VALUE *argv, int accept_shell)
return execarg_obj;
}
struct rb_execarg
*rb_execarg_get(VALUE execarg_obj)
struct rb_execarg *
rb_execarg_get(VALUE execarg_obj)
{
struct rb_execarg *eargp;
TypedData_Get_Struct(execarg_obj, struct rb_execarg, &exec_arg_data_type, eargp);