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:
authorJoseph Eagar <joeedh@gmail.com>2021-07-01 07:38:18 +0300
committerJoseph Eagar <joeedh@gmail.com>2021-07-01 07:38:18 +0300
commitd0759840a00edff4cb1c345694c12f6a281fbdc8 (patch)
treec06e8d92d08fd55d215d2a439fc456682a3e7b47 /source/blender/blenlib/BLI_linklist_stack.h
parent5b19b2cb5675c1e0d64176cfa73e17eed3132038 (diff)
parent02df67875af9ac6b3af22362cec31ff74a15176f (diff)
Merge branch 'master' into temp_bmesh_multires
Diffstat (limited to 'source/blender/blenlib/BLI_linklist_stack.h')
-rw-r--r--source/blender/blenlib/BLI_linklist_stack.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/BLI_linklist_stack.h b/source/blender/blenlib/BLI_linklist_stack.h
index 9af98172b78..c07a0376f5b 100644
--- a/source/blender/blenlib/BLI_linklist_stack.h
+++ b/source/blender/blenlib/BLI_linklist_stack.h
@@ -119,7 +119,7 @@
_##var##_free = _##var##_free->next; \
} \
else { \
- _##var##_temp = alloca(sizeof(LinkNode)); \
+ _##var##_temp = (LinkNode *)alloca(sizeof(LinkNode)); \
} \
_##var##_temp->next = _##var##_stack; \
_##var##_temp->link = data; \