about summary refs log tree commit diff
path: root/src/rt/rust_task.cpp
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2011-12-20 11:57:22 -0800
committerBrian Anderson <banderson@mozilla.com>2011-12-20 11:57:22 -0800
commit93fef2e113be8bde3b135924e64e145917291ef1 (patch)
treeb40bd46d5019b08fe21379b19ac013324622b15d /src/rt/rust_task.cpp
parent784713ec683c7cce0a1d4aa712a376317384d62c (diff)
downloadrust-93fef2e113be8bde3b135924e64e145917291ef1.tar.gz
rust-93fef2e113be8bde3b135924e64e145917291ef1.zip
rt: Parenthesize the red zone macros
Diffstat (limited to 'src/rt/rust_task.cpp')
-rw-r--r--src/rt/rust_task.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/rt/rust_task.cpp b/src/rt/rust_task.cpp
index 125a2900ca0..4604b89b95c 100644
--- a/src/rt/rust_task.cpp
+++ b/src/rt/rust_task.cpp
@@ -18,11 +18,11 @@
 // The amount of extra space at the end of each stack segment, available
 // to the rt, compiler and dynamic linker for running small functions
 // FIXME: We want this to be 128 but need to slim the red zone calls down
-#define RZ_LINUX_32 1024*20
-#define RZ_LINUX_64 1024*20
-#define RZ_MAC_32   1024*20
-#define RZ_MAC_64   1024*20
-#define RZ_WIN_32   1024*20
+#define RZ_LINUX_32 (1024*20)
+#define RZ_LINUX_64 (1024*20)
+#define RZ_MAC_32   (1024*20)
+#define RZ_MAC_64   (1024*20)
+#define RZ_WIN_32   (1024*20)
 
 #ifdef __linux__
 #ifdef __i386__