From 49229744e949069ad41325775d0151f84f99029e Mon Sep 17 00:00:00 2001 From: Paul Olteanu <170131110+cmpwi@users.noreply.github.com> Date: Wed, 22 Apr 2026 19:22:42 -0400 Subject: [PATCH] Replace hard-coded four spaces with tab in objc_alloc() --- fast_paths.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fast_paths.m b/fast_paths.m index ec2f646a..bf9468ef 100644 --- a/fast_paths.m +++ b/fast_paths.m @@ -25,7 +25,7 @@ - (id)init; { return class_createInstance(cls, 0); } - return [cls alloc]; + return [cls alloc]; } /**