diff options
| author | Graydon Hoare <[email protected]> | 2010-07-04 02:15:11 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2010-07-04 02:15:11 -0700 |
| commit | 1fa468460def2b11f434bb66c049a92e21d6ec0b (patch) | |
| tree | 0b3538a4abdf77eb71d01d281e3f4a7a9033bec3 /src/rt/rust_upcall.cpp | |
| parent | Comment-out glue interrupt-flag test; unclear why it breaks, but glue call-tr... (diff) | |
| download | rust-1fa468460def2b11f434bb66c049a92e21d6ec0b.tar.xz rust-1fa468460def2b11f434bb66c049a92e21d6ec0b.zip | |
Fix typo in upcall_recv log message.
Diffstat (limited to 'src/rt/rust_upcall.cpp')
| -rw-r--r-- | src/rt/rust_upcall.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rt/rust_upcall.cpp b/src/rt/rust_upcall.cpp index b9cd68fc..602264b5 100644 --- a/src/rt/rust_upcall.cpp +++ b/src/rt/rust_upcall.cpp @@ -262,7 +262,7 @@ upcall_recv(rust_task *task, uintptr_t *dptr, rust_port *port) LOG_UPCALL_ENTRY(task); rust_dom *dom = task->dom; dom->log(rust_log::UPCALL|rust_log::COMM, - "upcall recv(dptr=0x" PRIxPTR ", port=0x%" PRIxPTR ")", + "upcall recv(dptr=0x%" PRIxPTR ", port=0x%" PRIxPTR ")", (uintptr_t)dptr, (uintptr_t)port); |