Use stderr for debug prints in DEBUG(); fix #3584

This commit is contained in:
Yukihiro "Matz" Matsumoto
2017-04-05 12:38:38 +09:00
parent 74712c73ac
commit 7f37c2fc57
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -701,7 +701,7 @@ mrb_gc_mark(mrb_state *mrb, struct RBasic *obj)
static void
obj_free(mrb_state *mrb, struct RBasic *obj, int end)
{
DEBUG(printf("obj_free(%p,tt=%d)\n",obj,obj->tt));
DEBUG(fprintf(stderr, "obj_free(%p,tt=%d)\n",obj,obj->tt));
switch (obj->tt) {
/* immediate - no mark */
case MRB_TT_TRUE:
+1 -1
View File
@@ -1809,7 +1809,7 @@ RETRY_TRY_BLOCK:
return v;
}
pc = ci->pc;
DEBUG(printf("from :%s\n", mrb_sym2name(mrb, ci->mid)));
DEBUG(fprintf(stderr, "from :%s\n", mrb_sym2name(mrb, ci->mid)));
proc = mrb->c->ci->proc;
irep = proc->body.irep;
pool = irep->pool;