aboutsummaryrefslogtreecommitdiff
path: root/src/rt/rust_chan.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/rt/rust_chan.cpp')
-rw-r--r--src/rt/rust_chan.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rt/rust_chan.cpp b/src/rt/rust_chan.cpp
index 6aa9121a..497968c7 100644
--- a/src/rt/rust_chan.cpp
+++ b/src/rt/rust_chan.cpp
@@ -11,8 +11,8 @@ rust_chan::rust_chan(rust_task *task, rust_port *port) :
task->log(rust_log::MEM | rust_log::COMM,
"new rust_chan(task=0x%" PRIxPTR
- ", port=0x%" PRIxPTR ") -> chan=0x%"
- PRIxPTR, (uintptr_t) task, (uintptr_t) port, (uintptr_t) this);
+ ", port=0x%" PRIxPTR ") -> chan=0x%" PRIxPTR,
+ (uintptr_t) task, (uintptr_t) port, (uintptr_t) this);
}
rust_chan::~rust_chan() {