Fix indentation in switch in rb_gc_impl_mark_maybe [ci skip]

This commit is contained in:
Peter Zhu 2025-07-29 10:53:52 -04:00
parent e0818ac659
commit 46d106f7ab

View file

@ -4454,10 +4454,10 @@ rb_gc_impl_mark_maybe(void *objspace_ptr, VALUE obj)
asan_unpoisoning_object(obj) {
/* Garbage can live on the stack, so do not mark or pin */
switch (BUILTIN_TYPE(obj)) {
case T_ZOMBIE:
case T_NONE:
case T_ZOMBIE:
case T_NONE:
break;
default:
default:
gc_mark_and_pin(objspace, obj);
break;
}