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:
authorCampbell Barton <ideasman42@gmail.com>2020-04-05 06:53:24 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-04-05 06:53:32 +0300
commit9fe0505db00f450333518238db6813ede046f45e (patch)
treef8d3feec11659a545aac2b419a223120dfafea1d /source/blender/blenlib
parent93806ba82b30683f3e459f0c77ea9b162e1287ec (diff)
Cleanup: macro hygiene, parenthesize arguments
Diffstat (limited to 'source/blender/blenlib')
-rw-r--r--source/blender/blenlib/BLI_link_utils.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/BLI_link_utils.h b/source/blender/blenlib/BLI_link_utils.h
index f37841e3192..c0db53ca9a3 100644
--- a/source/blender/blenlib/BLI_link_utils.h
+++ b/source/blender/blenlib/BLI_link_utils.h
@@ -61,7 +61,7 @@
#define BLI_LINKS_FREE(list) \
{ \
while (list) { \
- void *next = list->next; \
+ void *next = (list)->next; \
MEM_freeN(list); \
list = next; \
} \