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-09-12 09:27:50 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-09-12 09:33:27 +0300
commit4c24e8e992c78d812cdfcb90e3aa648714597ae1 (patch)
tree999b2cb9913497c66646c8c1e205fcd93aabd6f9 /source/blender/blenkernel/intern/hair.c
parentad5f1d02318a30c545196f124e30504615294416 (diff)
Cleanup: missing-variable-declarations warning
Diffstat (limited to 'source/blender/blenkernel/intern/hair.c')
-rw-r--r--source/blender/blenkernel/intern/hair.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenkernel/intern/hair.c b/source/blender/blenkernel/intern/hair.c
index 72e3d355ba5..57997eaf3a1 100644
--- a/source/blender/blenkernel/intern/hair.c
+++ b/source/blender/blenkernel/intern/hair.c
@@ -49,8 +49,8 @@
#include "BLO_read_write.h"
-const char *HAIR_ATTR_POSITION = "Position";
-const char *HAIR_ATTR_RADIUS = "Radius";
+static const char *HAIR_ATTR_POSITION = "Position";
+static const char *HAIR_ATTR_RADIUS = "Radius";
/* Hair datablock */