diff options
| author | Patrick Walton <pcwalton@mimiga.net> | 2010-12-13 17:57:28 -0800 |
|---|---|---|
| committer | Patrick Walton <pcwalton@mimiga.net> | 2010-12-13 17:59:05 -0800 |
| commit | 5a1cba7883dfc2b0d84d5d5a694d7595b5f2d832 (patch) | |
| tree | fed966a6417436e831d91830505c94baff09a964 /src/rt/rust_upcall.cpp | |
| parent | 525966a543a6d03d10393b55a5207678aab8c147 (diff) | |
| download | rust-5a1cba7883dfc2b0d84d5d5a694d7595b5f2d832.tar.gz rust-5a1cba7883dfc2b0d84d5d5a694d7595b5f2d832.zip | |
Make failing to resolve a symbol an error
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 ebf81faf3ac..7e2fac101ed 100644 --- a/src/rt/rust_upcall.cpp +++ b/src/rt/rust_upcall.cpp @@ -486,7 +486,7 @@ upcall_require_rust_sym(rust_task *task, task->log(rust_log::UPCALL | rust_log::CACHE, "found-or-cached addr: 0x%" PRIxPTR, addr); } else { - task->log(rust_log::UPCALL | rust_log::CACHE, + task->log(rust_log::UPCALL | rust_log::CACHE | rust_log::ERR, "failed to resolve symbol"); task->fail(7); } |
