Fix typo in upcall_recv log message.

This commit is contained in:
Graydon Hoare 2010-07-04 02:15:11 -07:00
parent 1ac6a5038d
commit 1fa468460d
1 changed files with 1 additions and 1 deletions

View File

@ -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);