fix spaces in the type cast expressions (cosmetic changes)

This commit is contained in:
Yukihiro "Matz" Matsumoto
2023-05-18 23:17:52 +09:00
parent cead78b394
commit eea72ec84a
42 changed files with 145 additions and 148 deletions
+1 -1
View File
@@ -178,7 +178,7 @@ mrb_debug_info_alloc(mrb_state *mrb, mrb_irep *irep)
mrb_irep_debug_info *ret;
mrb_assert(!irep->debug_info);
ret = (mrb_irep_debug_info *)mrb_malloc(mrb, sizeof(*ret));
ret = (mrb_irep_debug_info*)mrb_malloc(mrb, sizeof(*ret));
*ret = initial;
irep->debug_info = ret;
return ret;