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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2018-11-28 19:54:05 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2018-11-28 19:54:58 +0300
commit547bc2a620839988b1df92b58e772125a7bda6e0 (patch)
tree0436b799b72d617786c4f2efeaff2b9cf6bc3330 /intern/numaapi
parentc16321cb9dc983d174e7f5888d66118ef5f76a92 (diff)
Fix compilation error on 32bit Windows
Diffstat (limited to 'intern/numaapi')
-rw-r--r--intern/numaapi/source/numaapi_win32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/numaapi/source/numaapi_win32.c b/intern/numaapi/source/numaapi_win32.c
index a000b3ce208..33cbc797bd0 100644
--- a/intern/numaapi/source/numaapi_win32.c
+++ b/intern/numaapi/source/numaapi_win32.c
@@ -140,7 +140,7 @@ static NUMAAPI_Result loadNumaSymbols(void) {
NUMAAPI_Result numaAPI_Initialize(void) {
#if !ARCH_CPU_64_BITS
// No NUMA on 32 bit platforms.
- return LIBNUMAAPI_NOT_AVAILABLE;
+ return NUMAAPI_NOT_AVAILABLE;
#else
if (!IsWindows7OrGreater()) {
// Require Windows 7 or higher.