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:
Diffstat (limited to 'source/blender/python/intern/bpy_interface.c')
-rw-r--r--source/blender/python/intern/bpy_interface.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/python/intern/bpy_interface.c b/source/blender/python/intern/bpy_interface.c
index fbd8339741e..62e374953b0 100644
--- a/source/blender/python/intern/bpy_interface.c
+++ b/source/blender/python/intern/bpy_interface.c
@@ -162,14 +162,14 @@ void BPY_start_python_path(void)
#if (defined(WIN32) || defined(WIN64))
#if defined(FREE_WINDOWS)
- sprintf(py_path, "PYTHONPATH=%s", py_path_bundle)
+ sprintf(py_path, "PYTHONPATH=%s", py_path_bundle);
putenv(py_path);
#else
_putenv_s("PYTHONPATH", py_path_bundle);
#endif
#else
#ifdef __sgi
- sprintf(py_path, "PYTHONPATH=%s", py_path_bundle)
+ sprintf(py_path, "PYTHONPATH=%s", py_path_bundle);
putenv(py_path);
#else
setenv("PYTHONPATH", py_path_bundle, 1);