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>2021-02-13 09:03:20 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-02-13 09:40:10 +0300
commit69e9e45744b11c91626869f1ade72a07c296d387 (patch)
treedf18fd4621036d7a93675ac7f63b6ceb5f3575db /source/creator
parent2da649cc50b552996bd790dadc27ad1af437800f (diff)
Cleanup: macro hygiene, use parenthesis around operators
Diffstat (limited to 'source/creator')
-rw-r--r--source/creator/creator_intern.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/creator/creator_intern.h b/source/creator/creator_intern.h
index 0a13f45eef1..bcc8a15355a 100644
--- a/source/creator/creator_intern.h
+++ b/source/creator/creator_intern.h
@@ -73,7 +73,7 @@ enum {
/* for the callbacks: */
#ifndef WITH_PYTHON_MODULE
# define BLEND_VERSION_FMT "Blender %d.%02d.%d"
-# define BLEND_VERSION_ARG BLENDER_VERSION / 100, BLENDER_VERSION % 100, BLENDER_VERSION_PATCH
+# define BLEND_VERSION_ARG (BLENDER_VERSION / 100), (BLENDER_VERSION % 100), BLENDER_VERSION_PATCH
#endif
#ifdef WITH_BUILDINFO_HEADER