diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-09-29 02:44:49 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-09-29 02:44:49 +0000 |
| commit | c8dd0c12f8c8253b240fca12efe7c1756207ab60 (patch) | |
| tree | 422a2ee7d53697aad502fbb7b2490856c0b7d16a /eval.c | |
| parent | 5a9556bbf63d83d5e69aac0041b3f4f46b8473ab (diff) | |
| download | ruby-c8dd0c12f8c8253b240fca12efe7c1756207ab60.tar.gz ruby-c8dd0c12f8c8253b240fca12efe7c1756207ab60.tar.xz ruby-c8dd0c12f8c8253b240fca12efe7c1756207ab60.zip | |
* 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
Diffstat (limited to 'eval.c')
| -rw-r--r-- | eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } } |
