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

Adjusted indents [ci skip]

This commit is contained in:
Nobuyoshi Nakada 2021-03-17 09:49:17 +09:00
parent 58660e9434
commit 3260602fa3
No known key found for this signature in database
GPG key ID: 7CD2805BFA3770C6

View file

@ -3523,11 +3523,11 @@ rb_gzfile_path(VALUE obj)
static VALUE
gzfile_initialize_path_partial(VALUE obj)
{
struct gzfile* gz;
TypedData_Get_Struct(obj, struct gzfile, &gzfile_data_type, gz);
gz->path = rb_funcall(gz->io, id_path, 0);
rb_define_singleton_method(obj, "path", rb_gzfile_path, 0);
return Qnil;
struct gzfile* gz;
TypedData_Get_Struct(obj, struct gzfile, &gzfile_data_type, gz);
gz->path = rb_funcall(gz->io, id_path, 0);
rb_define_singleton_method(obj, "path", rb_gzfile_path, 0);
return Qnil;
}
static void