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:
authorTon Roosendaal <ton@blender.org>2009-07-03 17:48:42 +0400
committerTon Roosendaal <ton@blender.org>2009-07-03 17:48:42 +0400
commita7d6b6eebf761f87ec3e5972c99ca0aedf312acd (patch)
tree28b7265978ac122a91bccb7c841b219844b7d7dc /source/blender/python/intern/bpy_interface.c
parentea287fc4ec7f52a690730eb890c1c548d1d60773 (diff)
2.5
Windows #ifdef code missed semicolon.
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);