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_builtin.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_builtin.cpp')
| -rw-r--r-- | src/rt/rust_builtin.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/rt/rust_builtin.cpp b/src/rt/rust_builtin.cpp index a7325bc066d..cdf20a40adc 100644 --- a/src/rt/rust_builtin.cpp +++ b/src/rt/rust_builtin.cpp @@ -47,7 +47,8 @@ last_os_error(rust_task *task) { task->fail(1); return NULL; } - rust_str *st = new (mem) rust_str(sched, alloc, fill, (const uint8_t *)buf); + rust_str *st = new (mem) rust_str(sched, alloc, fill, + (const uint8_t *)buf); #ifdef __WIN32__ LocalFree((HLOCAL)buf); |
