From 69eb602b026e483230b391f2cd4e72490fc436df Mon Sep 17 00:00:00 2001 From: mame Date: Wed, 27 Jan 2010 13:29:01 +0000 Subject: * vm_eval.c (rb_backtrace): "circular require" warning was output to stdout except the first line. All line is output to stderr now. [ruby-dev:40147] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26443 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- vm_eval.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vm_eval.c') diff --git a/vm_eval.c b/vm_eval.c index 762453e5fe..ada783da8d 100644 --- a/vm_eval.c +++ b/vm_eval.c @@ -1577,7 +1577,7 @@ print_backtrace(void *arg, VALUE file, int line, VALUE method) void rb_backtrace(void) { - vm_backtrace_each(GET_THREAD(), -1, print_backtrace, stdout); + vm_backtrace_each(GET_THREAD(), -1, print_backtrace, stderr); } VALUE -- cgit v1.2.3