summaryrefslogtreecommitdiff
path: root/eval.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-09-29 02:44:49 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-09-29 02:44:49 +0000
commit4699b4afbb8e0fd96957de6dd6f23ecbe2a1bdd0 (patch)
tree422a2ee7d53697aad502fbb7b2490856c0b7d16a /eval.c
parentb2cf59aa1cbfb8109f0f2579427159c47f93e6eb (diff)
* eval.c (rb_thread_atfork): wrong format specifier.
[ruby-dev:21428] * process.c (pst_inspect): better description. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4617 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/eval.c b/eval.c
index 897ae7e602..3ee0b4d5da 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);
}
}