Skip to content

Commit 93fef2e

Browse files
committed
rt: Parenthesize the red zone macros
1 parent 784713e commit 93fef2e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/rt/rust_task.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@
1818
// The amount of extra space at the end of each stack segment, available
1919
// to the rt, compiler and dynamic linker for running small functions
2020
// FIXME: We want this to be 128 but need to slim the red zone calls down
21-
#define RZ_LINUX_32 1024*20
22-
#define RZ_LINUX_64 1024*20
23-
#define RZ_MAC_32 1024*20
24-
#define RZ_MAC_64 1024*20
25-
#define RZ_WIN_32 1024*20
21+
#define RZ_LINUX_32 (1024*20)
22+
#define RZ_LINUX_64 (1024*20)
23+
#define RZ_MAC_32 (1024*20)
24+
#define RZ_MAC_64 (1024*20)
25+
#define RZ_WIN_32 (1024*20)
2626

2727
#ifdef __linux__
2828
#ifdef __i386__

0 commit comments

Comments
 (0)