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 static VALUE
gzfile_initialize_path_partial(VALUE obj) gzfile_initialize_path_partial(VALUE obj)
{ {
struct gzfile* gz; struct gzfile* gz;
TypedData_Get_Struct(obj, struct gzfile, &gzfile_data_type, gz); TypedData_Get_Struct(obj, struct gzfile, &gzfile_data_type, gz);
gz->path = rb_funcall(gz->io, id_path, 0); gz->path = rb_funcall(gz->io, id_path, 0);
rb_define_singleton_method(obj, "path", rb_gzfile_path, 0); rb_define_singleton_method(obj, "path", rb_gzfile_path, 0);
return Qnil; return Qnil;
} }
static void static void