summaryrefslogtreecommitdiff
path: root/vm_args.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-04-10 06:44:41 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-04-10 06:44:41 +0000
commit5ae753dfa3632a8bc4a4141ff67e8fc9554ca7a0 (patch)
treeb88888d1db310dc460f75315e5f2997f43f071e5 /vm_args.c
parentcc02df324f74fc84b9eae1e66bdf38f4422c249b (diff)
Adjusted styles
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67493 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_args.c')
-rw-r--r--vm_args.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm_args.c b/vm_args.c
index 932c3b75b5..e9a1a8c580 100644
--- a/vm_args.c
+++ b/vm_args.c
@@ -36,7 +36,7 @@ enum arg_setup_type {
static inline void
arg_rest_dup(struct args_info *args)
{
- if(!args->rest_dupped) {
+ if (!args->rest_dupped) {
args->rest = rb_ary_dup(args->rest);
args->rest_dupped = TRUE;
}