From c8dd0c12f8c8253b240fca12efe7c1756207ab60 Mon Sep 17 00:00:00 2001 From: matz Date: Mon, 29 Sep 2003 02:44:49 +0000 Subject: * eval.c (rb_thread_atfork): wrong format specifier. [ruby-dev:21428] * process.c (pst_inspect): better description. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4617 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- eval.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'eval.c') diff --git a/eval.c b/eval.c index 897ae7e60..3ee0b4d5d 100644 --- a/eval.c +++ b/eval.c @@ -9902,7 +9902,7 @@ rb_thread_atfork() if (rb_thread_alone()) return; FOREACH_THREAD(th) { if (th != curr_thread) { - rb_warn("fork terminates thread at %s:%s", th->node->nd_file, nd_line(th->node)); + rb_warn("fork terminates thread at %s:%d", th->node->nd_file, nd_line(th->node)); rb_thread_die(th); } } -- cgit