Skip to content

Commit 46d106f

Browse files
committed
Fix indentation in switch in rb_gc_impl_mark_maybe [ci skip]
1 parent e0818ac commit 46d106f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

gc/default/default.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4454,10 +4454,10 @@ rb_gc_impl_mark_maybe(void *objspace_ptr, VALUE obj)
44544454
asan_unpoisoning_object(obj) {
44554455
/* Garbage can live on the stack, so do not mark or pin */
44564456
switch (BUILTIN_TYPE(obj)) {
4457-
case T_ZOMBIE:
4458-
case T_NONE:
4457+
case T_ZOMBIE:
4458+
case T_NONE:
44594459
break;
4460-
default:
4460+
default:
44614461
gc_mark_and_pin(objspace, obj);
44624462
break;
44634463
}

0 commit comments

Comments
 (0)