summaryrefslogtreecommitdiff
path: root/gc.c
diff options
context:
space:
mode:
authorgit <svn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-08-13 11:20:39 +0900
committergit <svn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-08-13 11:20:39 +0900
commitf78916e3c1fc10a7f9555129961194c7d6ba4f2d (patch)
tree5050f421b13fc6d05b8e27a5e1bcd4a2a0b6eab7 /gc.c
parentc215a6f2822d2d0c09e90867baadb250fd31206c (diff)
* expand tabs.
Diffstat (limited to 'gc.c')
-rw-r--r--gc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gc.c b/gc.c
index 158a57da1a..c957c40fac 100644
--- a/gc.c
+++ b/gc.c
@@ -2740,7 +2740,7 @@ objspace_each_objects_without_setup(rb_objspace_t *objspace, each_obj_callback *
pstart = page->start;
pend = pstart + page->total_slots;
- if ((*callback)(pstart, pend, sizeof(RVALUE), data)) {
+ if ((*callback)(pstart, pend, sizeof(RVALUE), data)) {
break;
}
}
@@ -2814,11 +2814,11 @@ objspace_each_objects(rb_objspace_t *objspace, each_obj_callback *callback, void
objspace->flags.dont_incremental = TRUE;
if (prev_dont_incremental) {
- objspace_each_objects_without_setup(objspace, callback, data);
+ objspace_each_objects_without_setup(objspace, callback, data);
}
else {
struct each_obj_args args = {objspace, callback, data};
- rb_ensure(objspace_each_objects_protected, (VALUE)&args, incremental_enable, Qnil);
+ rb_ensure(objspace_each_objects_protected, (VALUE)&args, incremental_enable, Qnil);
}
}