Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/xiph/speex.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Storsjo <martin@martin.st>2017-11-03 13:03:52 +0300
committerTristan Matthews <tmatth@videolan.org>2017-11-03 17:10:51 +0300
commitdd8e04fb89a30d74643f64b6fee750b5daad9fd7 (patch)
tree65b253a9ec8b165bade6c2888649f484ff919ac0 /libspeex
parent566e3a9466d199f7d8e8f7fcf79f2754187e3bfc (diff)
Check for _WIN32 instead of WIN32 in preprocessor checks
_WIN32 is always defined by the compiler automatically when targeting that platform, while WIN32 only is defined automatically in some configurations, and e.g. in MSVC only ever is defined in project files (if at all). Some other checks in the codebase already check for both WIN32 and _WIN32; those are left untouched.
Diffstat (limited to 'libspeex')
-rw-r--r--libspeex/stack_alloc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libspeex/stack_alloc.h b/libspeex/stack_alloc.h
index 5264e66..f6eb3f6 100644
--- a/libspeex/stack_alloc.h
+++ b/libspeex/stack_alloc.h
@@ -36,7 +36,7 @@
#define STACK_ALLOC_H
#ifdef USE_ALLOCA
-# ifdef WIN32
+# ifdef _WIN32
# include <malloc.h>
# else
# ifdef HAVE_ALLOCA_H