[ruby/strscan] Fix indentation in strscan.c

[ci skip]
This commit is contained in:
Peter Zhu 2023-07-28 10:12:52 -04:00
parent 49b76e57cc
commit 91e13a5207

View File

@ -580,11 +580,11 @@ strscan_match(regex_t *reg, VALUE str, struct re_registers *regs, void *args_ptr
struct strscanner *p = (struct strscanner *)args_ptr;
return onig_match(reg,
match_target(p),
(UChar* )(CURPTR(p) + S_RESTLEN(p)),
(UChar* )CURPTR(p),
regs,
ONIG_OPTION_NONE);
match_target(p),
(UChar* )(CURPTR(p) + S_RESTLEN(p)),
(UChar* )CURPTR(p),
regs,
ONIG_OPTION_NONE);
}
static OnigPosition