summaryrefslogtreecommitdiffhomepage
path: root/src/debug.c
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2017-08-01 16:31:18 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2017-08-01 16:31:18 +0900
commit2170fad406ecbb7a9ace6f762a376b3bdc860352 (patch)
tree5c68271583cf639697a052333339330a31bd3618 /src/debug.c
parent648e9ea51ba6c058ccec725af0ada5c8dd7e9197 (diff)
downloadmruby-2170fad406ecbb7a9ace6f762a376b3bdc860352.tar.gz
mruby-2170fad406ecbb7a9ace6f762a376b3bdc860352.zip
Cosmetic changes (removing spaces before `*` in return types).
Diffstat (limited to 'src/debug.c')
-rw-r--r--src/debug.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/debug.c b/src/debug.c
index d2bcd7d5e..8e431af95 100644
--- a/src/debug.c
+++ b/src/debug.c
@@ -3,7 +3,7 @@
#include <mruby/irep.h>
#include <mruby/debug.h>
-static mrb_irep_debug_info_file *
+static mrb_irep_debug_info_file*
get_file(mrb_irep_debug_info *info, uint32_t pc)
{
mrb_irep_debug_info_file **ret;
@@ -108,7 +108,7 @@ mrb_debug_get_line(mrb_irep *irep, uint32_t pc)
return -1;
}
-MRB_API mrb_irep_debug_info *
+MRB_API mrb_irep_debug_info*
mrb_debug_info_alloc(mrb_state *mrb, mrb_irep *irep)
{
static const mrb_irep_debug_info initial = { 0, 0, NULL };
@@ -121,7 +121,7 @@ mrb_debug_info_alloc(mrb_state *mrb, mrb_irep *irep)
return ret;
}
-MRB_API mrb_irep_debug_info_file *
+MRB_API mrb_irep_debug_info_file*
mrb_debug_info_append_file(mrb_state *mrb, mrb_irep *irep,
uint32_t start_pos, uint32_t end_pos)
{