Skip to content

Commit 359c9f3

Browse files
committed
Fixed indents [ci skip]
1 parent c4a13d4 commit 359c9f3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ext/stringio/stringio.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
#define rb_io_extract_modeenc strio_extract_modeenc
3131
static void
3232
strio_extract_modeenc(VALUE *vmode_p, VALUE *vperm_p, VALUE opthash,
33-
int *oflags_p, int *fmode_p, struct rb_io_enc_t *convconfig_p)
33+
int *oflags_p, int *fmode_p, struct rb_io_enc_t *convconfig_p)
3434
{
3535
VALUE mode = *vmode_p;
3636
int fmode;
@@ -70,12 +70,12 @@ strio_extract_modeenc(VALUE *vmode_p, VALUE *vperm_p, VALUE opthash,
7070
}
7171

7272
if (!NIL_P(opthash)) {
73-
rb_encoding *extenc = 0, *intenc = 0;
74-
if (rb_io_extract_encoding_option(opthash, &extenc, &intenc, &fmode)) {
73+
rb_encoding *extenc = 0, *intenc = 0;
74+
if (rb_io_extract_encoding_option(opthash, &extenc, &intenc, &fmode)) {
7575
if (convconfig_p->enc || convconfig_p->enc2) {
7676
rb_raise(rb_eArgError, "encoding specified twice");
7777
}
78-
}
78+
}
7979
}
8080
*fmode_p = fmode;
8181
}

0 commit comments

Comments
 (0)