diff options
| author | Graydon Hoare <graydon@mozilla.com> | 2011-06-29 15:11:20 -0700 |
|---|---|---|
| committer | Graydon Hoare <graydon@mozilla.com> | 2011-06-29 15:14:55 -0700 |
| commit | c796a8f24dfa94a1614da70fbf25b63d3709a116 (patch) | |
| tree | 14043d11f35f457ee9a09cabd7fdadb4669fa376 /src/rt/rust_upcall.cpp | |
| parent | 190644063e7081fe715b01dc8d27daec509b6114 (diff) | |
| download | rust-c796a8f24dfa94a1614da70fbf25b63d3709a116.tar.gz rust-c796a8f24dfa94a1614da70fbf25b63d3709a116.zip | |
Re-enable tidy (it was broken) and fix various non-tidy things.
Diffstat (limited to 'src/rt/rust_upcall.cpp')
| -rw-r--r-- | src/rt/rust_upcall.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/rt/rust_upcall.cpp b/src/rt/rust_upcall.cpp index 5a556a8e12b..d16691ee7ca 100644 --- a/src/rt/rust_upcall.cpp +++ b/src/rt/rust_upcall.cpp @@ -339,7 +339,8 @@ rust_str *make_str(rust_task *task, char const *s, size_t fill) { task->fail(3); return NULL; } - rust_str *st = new (mem) rust_str(sched, alloc, fill, (uint8_t const *) s); + rust_str *st = new (mem) rust_str(sched, alloc, fill, + (uint8_t const *) s); LOG(task, mem, "upcall new_str('%s', %" PRIdPTR ") = 0x%" PRIxPTR, s, fill, st); |
