summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-bin-debugger/tools/mrdb/cmdmisc.c
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2021-07-07 11:51:29 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2021-07-08 07:24:12 +0900
commitfb1d4ff6826098c5d44be1cd8500dd4cf97ed57c (patch)
tree21faccb28543abe8d71e725fe16540c3c2d53523 /mrbgems/mruby-bin-debugger/tools/mrdb/cmdmisc.c
parent5f61b36a212185774a2ffa26fcf4017452dbafb1 (diff)
downloadmruby-fb1d4ff6826098c5d44be1cd8500dd4cf97ed57c.tar.gz
mruby-fb1d4ff6826098c5d44be1cd8500dd4cf97ed57c.zip
mruby-bin-debugger: rename prefix 'mrb_debug_' to `mrdb_`.
Diffstat (limited to 'mrbgems/mruby-bin-debugger/tools/mrdb/cmdmisc.c')
-rw-r--r--mrbgems/mruby-bin-debugger/tools/mrdb/cmdmisc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mrbgems/mruby-bin-debugger/tools/mrdb/cmdmisc.c b/mrbgems/mruby-bin-debugger/tools/mrdb/cmdmisc.c
index fde65fbef..9df33bc60 100644
--- a/mrbgems/mruby-bin-debugger/tools/mrdb/cmdmisc.c
+++ b/mrbgems/mruby-bin-debugger/tools/mrdb/cmdmisc.c
@@ -233,7 +233,7 @@ parse_filename(mrb_state *mrb, char **sp, listcmd_parser_state *st)
len = strlen(*sp);
}
- if (len > 0 && (st->filename = mrb_debug_strndup(mrb, *sp, len)) != NULL) {
+ if (len > 0 && (st->filename = mrdb_strndup(mrb, *sp, len)) != NULL) {
*sp += len;
return TRUE;
}