summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2021-03-17 09:49:17 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2021-03-17 09:49:17 +0900
commit3260602fa3d905ba310b9afbc5365ee52cb53d62 (patch)
tree40f3c4f5ed7b5aaf7ef89b1c390818d775d2f9a0 /ext
parent58660e943488778563b9e41005a601e9660ce21f (diff)
Adjusted indents [ci skip]
Diffstat (limited to 'ext')
-rw-r--r--ext/zlib/zlib.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/zlib/zlib.c b/ext/zlib/zlib.c
index a1da5f8211..45919202e4 100644
--- a/ext/zlib/zlib.c
+++ b/ext/zlib/zlib.c
@@ -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