about summary refs log tree commit diff
path: root/src/rt/rust_env.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/rt/rust_env.cpp')
-rw-r--r--src/rt/rust_env.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rt/rust_env.cpp b/src/rt/rust_env.cpp
index ab9bf9d75fa..9237e8b593c 100644
--- a/src/rt/rust_env.cpp
+++ b/src/rt/rust_env.cpp
@@ -84,10 +84,10 @@ static size_t
 get_max_stk_size() {
     char *maxsz = getenv(RUST_MAX_STACK);
     if (maxsz) {
-	return strtol(maxsz, NULL, 0);
+        return strtol(maxsz, NULL, 0);
     }
     else {
-	return 1024*1024*8;
+        return 1024*1024*8;
     }
 }