diff options
| author | Brian Anderson <banderson@mozilla.com> | 2012-03-31 23:12:06 -0700 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2012-03-31 23:12:06 -0700 |
| commit | 21064637ed8b8259d1305f21ace12c40b9561706 (patch) | |
| tree | c402d24572a9b4610930106d90358c1aeba2625a /src/rt/rust_stack.cpp | |
| parent | cf0c4cd7d2918205c13df38c4a62f93e1c72c1ac (diff) | |
| download | rust-21064637ed8b8259d1305f21ace12c40b9561706.tar.gz rust-21064637ed8b8259d1305f21ace12c40b9561706.zip | |
rt: Fix whitespace
Diffstat (limited to 'src/rt/rust_stack.cpp')
| -rw-r--r-- | src/rt/rust_stack.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rt/rust_stack.cpp b/src/rt/rust_stack.cpp index 4b760afad1e..adcf7e4b4ba 100644 --- a/src/rt/rust_stack.cpp +++ b/src/rt/rust_stack.cpp @@ -22,7 +22,7 @@ reuse_valgrind_stack(stk_seg *stk, uint8_t *sp) { // old stack segments, since the act of popping the stack previously // caused valgrind to consider the whole thing inaccessible. assert(sp >= stk->data && sp <= (uint8_t*) stk->end - && "Stack pointer must be inside stack segment"); + && "Stack pointer must be inside stack segment"); size_t sz = stk->end - (uintptr_t)sp; (void) VALGRIND_MAKE_MEM_UNDEFINED(sp, sz); (void) sz; |
