[Bf-blender-cvs] [547bc2a6208] master: Fix compilation error on 32bit Windows

Sergey Sharybin noreply at git.blender.org
Wed Nov 28 17:55:02 CET 2018


Commit: 547bc2a620839988b1df92b58e772125a7bda6e0
Author: Sergey Sharybin
Date:   Wed Nov 28 17:54:05 2018 +0100
Branches: master
https://developer.blender.org/rB547bc2a620839988b1df92b58e772125a7bda6e0

Fix compilation error on 32bit Windows

===================================================================

M	intern/numaapi/source/numaapi_win32.c

===================================================================

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.



More information about the Bf-blender-cvs mailing list