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>2017-04-26 14:06:00 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-04-26 14:06:00 +0300
commitf351cb547929e7be92651d579d96e8a4ab944fc6 (patch)
treed76b833f5d2046b3fef03d9af1a42622e340d403 /source/blender/makesdna
parent9b3e3d4defc66be82fd53552b380d42091c028c7 (diff)
Avoid platform dependant PATH_MAX
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_cachefile_types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_cachefile_types.h b/source/blender/makesdna/DNA_cachefile_types.h
index 86940209089..a353c94ae64 100644
--- a/source/blender/makesdna/DNA_cachefile_types.h
+++ b/source/blender/makesdna/DNA_cachefile_types.h
@@ -52,7 +52,7 @@ enum {
typedef struct AlembicObjectPath {
struct AlembicObjectPath *next, *prev;
- char path[4096]; /* 4096 = PATH_MAX */
+ char path[4096];
} AlembicObjectPath;
typedef struct CacheFile {