about summary refs log tree commit diff
path: root/src/rt/rust_stack.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/rt/rust_stack.cpp')
-rw-r--r--src/rt/rust_stack.cpp2
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;