diff options
| author | Brian Anderson <banderson@mozilla.com> | 2011-11-10 17:53:19 -0800 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2011-11-10 17:53:19 -0800 |
| commit | 793da65a8eb060268056861d1a82761747aa52a2 (patch) | |
| tree | f785c38fafbd3b05f9e7077eeacee65f7ecbf81e /src/rt/rust_builtin.cpp | |
| parent | 371574f64b4f51d05c9af951d3f5525142841cc7 (diff) | |
| download | rust-793da65a8eb060268056861d1a82761747aa52a2.tar.gz rust-793da65a8eb060268056861d1a82761747aa52a2.zip | |
rt: Move rust_chan::send to rust_port::send
Diffstat (limited to 'src/rt/rust_builtin.cpp')
| -rw-r--r-- | src/rt/rust_builtin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rt/rust_builtin.cpp b/src/rt/rust_builtin.cpp index cfe3edcd24c..4086e3708fd 100644 --- a/src/rt/rust_builtin.cpp +++ b/src/rt/rust_builtin.cpp @@ -498,7 +498,7 @@ chan_id_send(type_desc *t, rust_task_id target_task_id, if(target_task) { rust_port *port = target_task->get_port_by_id(target_port_id); if(port) { - port->remote_chan->send(sptr); + port->send(sptr); } target_task->deref(); } |
