summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Harkness <me@bearbin.net>2015-05-17 17:30:13 +0200
committerAlexander Harkness <me@bearbin.net>2015-05-17 17:30:13 +0200
commit1049d5b706d4e6c29ff9f9960bca3add2c0fd817 (patch)
tree9560bd3efe7d94b9dbc68da17801d2d4a1a58207
parentFixed typo. (diff)
downloadcuberite-1049d5b706d4e6c29ff9f9960bca3add2c0fd817.tar
cuberite-1049d5b706d4e6c29ff9f9960bca3add2c0fd817.tar.gz
cuberite-1049d5b706d4e6c29ff9f9960bca3add2c0fd817.tar.bz2
cuberite-1049d5b706d4e6c29ff9f9960bca3add2c0fd817.tar.lz
cuberite-1049d5b706d4e6c29ff9f9960bca3add2c0fd817.tar.xz
cuberite-1049d5b706d4e6c29ff9f9960bca3add2c0fd817.tar.zst
cuberite-1049d5b706d4e6c29ff9f9960bca3add2c0fd817.zip
-rw-r--r--src/FastRandom.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/FastRandom.cpp b/src/FastRandom.cpp
index 437dc72ff..c1716f026 100644
--- a/src/FastRandom.cpp
+++ b/src/FastRandom.cpp
@@ -10,7 +10,7 @@
#ifdef _WIN32
#define thread_local static __declspec(thread)
-#elif __APPLE__
+#elif defined __APPLE__
#define thread_local static __thread
#endif