summaryrefslogtreecommitdiff
path: root/string.c
diff options
context:
space:
mode:
authorgit <svn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-05-02 22:44:43 +0900
committergit <svn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-05-02 22:44:43 +0900
commit5c87bb3b90a6d77089314ed0e62e31654621efa9 (patch)
tree9343b2d100ece7efa07eef1e73baaf97d6accb3e /string.c
parent5e23b1138f16af0defb184d7deeffadfd2ce3c04 (diff)
* expand tabs.
Diffstat (limited to 'string.c')
-rw-r--r--string.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/string.c b/string.c
index 8e7b1e255a..b8ff2dd8bf 100644
--- a/string.c
+++ b/string.c
@@ -6518,7 +6518,7 @@ rb_str_casemap(VALUE source, OnigCaseFoldType *flags, rb_encoding *enc)
if (buffer_length_or_invalid < 0) {
current_buffer = DATA_PTR(buffer_anchor);
DATA_PTR(buffer_anchor) = 0;
- mapping_buffer_free(current_buffer);
+ mapping_buffer_free(current_buffer);
rb_raise(rb_eArgError, "input string invalid");
}
target_length += current_buffer->used = buffer_length_or_invalid;
@@ -6535,7 +6535,7 @@ rb_str_casemap(VALUE source, OnigCaseFoldType *flags, rb_encoding *enc)
target = rb_str_new_with_class(source, 0, target_length);
target_current = RSTRING_PTR(target);
- current_buffer = DATA_PTR(buffer_anchor);
+ current_buffer = DATA_PTR(buffer_anchor);
while (current_buffer) {
memcpy(target_current, current_buffer->space, current_buffer->used);
target_current += current_buffer->used;