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-07-23 06:52:52 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-07-23 06:59:07 +0300
commit19afb0ea672220cd373d44b71e7658cbdf976d70 (patch)
tree9ceaf95779fbcb9cc758e8f25507493b1a343882 /source/blender/python/generic
parent797820fc208a65de97ef85f18a8611f26c7e8a0a (diff)
Cleanup: remove redundant static variable use
This hasn't been needed since Python 3.7x.
Diffstat (limited to 'source/blender/python/generic')
-rw-r--r--source/blender/python/generic/py_capi_utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/generic/py_capi_utils.c b/source/blender/python/generic/py_capi_utils.c
index 9c84a4bb824..1051780d821 100644
--- a/source/blender/python/generic/py_capi_utils.c
+++ b/source/blender/python/generic/py_capi_utils.c
@@ -841,7 +841,7 @@ void PyC_SetHomePath(const char *py_path_bundle)
# endif
{
- static wchar_t py_path_bundle_wchar[1024];
+ wchar_t py_path_bundle_wchar[1024];
/* Can't use this, on linux gives bug: #23018,
* TODO: try LANG="en_US.UTF-8" /usr/bin/blender, suggested 2008 */