From 3260602fa3d905ba310b9afbc5365ee52cb53d62 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Wed, 17 Mar 2021 09:49:17 +0900 Subject: [PATCH] Adjusted indents [ci skip] --- ext/zlib/zlib.c | 10 +++++----- 1 file 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