* remove trailing spaces. [ci skip]

This commit is contained in:
git 2019-09-14 08:54:08 +09:00
parent 3cfbfa9628
commit b2c29bbab6

View File

@ -245,7 +245,7 @@ add_empty_keyword(int *argc, const VALUE **argv, int *kw_splat)
memcpy(ptr, *argv, sizeof(VALUE)*n); memcpy(ptr, *argv, sizeof(VALUE)*n);
ptr[n] = rb_hash_new(); ptr[n] = rb_hash_new();
*argc = ++n; *argc = ++n;
*argv = ptr; *argv = ptr;
*kw_splat = 1; *kw_splat = 1;
} }